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

html,
body {
    height: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background: #f4f2ee;
    color: #1a1a1a;
}

:root {
    --frame-gap: clamp(12px, 1.6vw, 20px);
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

section {
    padding-top: clamp(50px, 8vw, 90px);
    padding-bottom: clamp(50px, 8vw, 90px);
}

h2 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

p {
    margin-bottom: 0.8rem;
    line-height: 1.75;
    color: #444;
}

p,
h1,
h2,
h3 {
    max-width: 100%;
    min-width: 295px;
}

blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout */
.site-frame,
.site-wrapper {
    width: calc(100vw - (var(--frame-gap) * 2));
    min-height: calc(100vh - (var(--frame-gap) * 2));
    max-width: 1440px;
    margin: var(--frame-gap) auto;
    border-radius: 25px;
    border: 2px solid #f3efe7;
    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.4s ease;
}

.scroll-area {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}

.scroll-area::-webkit-scrollbar {
    display: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

main {
    min-height: 60vh;
}

.content-section {
    padding: 120px 0;
}

.content-section:nth-of-type(even) {
    background-color: #ffffff;
}

.section {
    padding: 120px 0;
}

/* Components */
.about-highlight,
.about-grid,
.featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
    gap: 80px;
    align-items: center;
}

.featured {
    position: relative;
}

.about-highlight {
    margin-top: 80px;
}

.about-intro {
    max-width: 800px;
    margin: auto;
    text-align: left;
}

.about-section,
.about-bio {
    padding: 120px 80px;
    max-width: 1200px;
    margin: auto;
    background: #faf8f5;
    border-radius: 20px;
}

.about-grid,
.bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
    gap: 80px;
    align-items: center;
}

.about-grid img,
.bio-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 6px 16px rgba(0, 0, 0, 0.08);
}

.about-grid h2,
.bio-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: 0.4px;
}

.about-grid h2::before,
.bio-text h2::before {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #d8cbb7;
    margin-bottom: 18px;
}

.about-grid p,
.bio-text p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 18px;
    max-width: 560px;
    color: #333;
}

.meet-mila-section {
    padding: 90px 0;
    background: #f7f4ef;
}

.meet-mila-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 40px;
}

.meet-mila-text h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.meet-mila-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.section-accent-line {
    width: 60px;
    height: 3px;
    background: #c7b8a3;
    margin-bottom: 25px;
}

.meet-mila-photo img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-artist-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.about-artist-photo img,
.about-main-photo {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-gallery {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 50px auto 40px auto;
    padding: 0 40px;
}

.gallery-image {
    display: flex;
    justify-content: center;
}

.gallery-image img {
    width: 100%;
    max-width: 420px;
    height: 360px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.gallery-quote {
    max-width: 260px;
    text-align: center;
    font-style: italic;
    color: #555;
}

.gallery-quote p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.gallery-quote span {
    font-size: 14px;
    letter-spacing: 1px;
    color: #999;
}

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

.artist-bio-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.artist-bio-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
    grid-template-rows: auto auto;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
    align-items: start;
}

.artist-bio-photo {
    grid-row: 1;
    grid-column: 1;
}

.artist-bio-intro {
    grid-column: 2;
    margin-top: 40px;
}

.artist-bio-rest {
    grid-column: 1 / span 2;
    margin-top: 10px;
}

.artist-bio-photo img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.artist-bio-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.artist-bio-intro p,
.artist-bio-rest p {
    line-height: 1.8;
    font-size: 17px;
    color: #444;
    max-width: 640px;
}

.page-card {
    background: #faf9f6;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.section-divider {
    width: 60px;
    height: 2px;
    background: #d6d0c6;
    margin: 70px auto;
    border-radius: 2px;
    opacity: 0.8;
}

.quote-block {
    max-width: 760px;
    margin: 80px auto;
    text-align: center;
    padding: 30px 30px;
    border-left: 3px solid #d6d0c6;
    border-right: 3px solid #d6d0c6;
}

.quote-text {
    font-style: italic;
    font-size: 22px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 10px;
}

.quote-author {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 2px;
    color: #888;
}

.gallery-image img,
.artist-bio-photo img {
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-image img {
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.gallery-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.about-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    text-wrap: balance;
    padding: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    overflow: hidden;
}

main>.about-hero:first-child {
    margin-top: 0;
    padding-top: 0;
}

main>section.page-hero.about-hero:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-block-start: 0 !important;
}

.artist-bio-container {
    margin-top: 0;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 10px;
    text-wrap: balance;
}

.about-hero p {
    font-size: 20px;
    max-width: 720px;
    margin: auto;
    line-height: 1.5;
    opacity: 0.9;
}

@media (max-width: 768px) {

    .about-section,
    .about-bio {
        padding: 72px 24px;
        margin: 72px 20px;
    }

    .bio-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .bio-text h2 {
        font-size: 34px;
    }
}

.about-image img {
    width: 100%;
    max-height: 520px;
    border-radius: 18px;
    object-fit: cover;
}

.featured-image img {
    width: 100%;
    border-radius: 20px;
}

.featured-text p {
    font-size: 1.05rem;
}

.floating-notes {
    position: absolute;
    right: 10%;
    top: 40%;
    pointer-events: none;
    opacity: 0.15;
    font-size: 30px;
}

.floating-notes span {
    display: block;
    animation: floatNote 8s infinite ease-in-out;
}

.floating-notes span:nth-child(2) {
    animation-delay: 2s;
}

.floating-notes span:nth-child(3) {
    animation-delay: 4s;
}

@keyframes floatNote {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.music-quote {
    text-align: center;
    margin: 100px auto;
    max-width: 700px;
}

.music-quote blockquote {
    font-size: 26px;
    font-family: 'Playfair Display', serif;
}

.quote-author {
    margin-top: 10px;
    opacity: 0.7;
}

.btn,
.btn-primary,
.btn-secondary {
    display: inline-block;
    text-decoration: none;
    border-radius: 0.65rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn {
    padding: 0.75rem 1.2rem;
    background-color: #4f46e5;
    color: #ffffff;
}

.btn:hover {
    background-color: #4338ca;
}

.btn-primary,
.btn-secondary {
    padding: 0.78rem 1.25rem;
}

.btn-primary {
    background: #111827;
    color: #ffffff;
}

.btn-primary:hover {
    background: #000000;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.info-grid,
.pricing-grid,
.stories-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.stories-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.info-card,
.pricing-card,
.story-card,
.contact-card,
.review-card {
    padding: 1.2rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.85rem;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.contact-card {
    background: linear-gradient(135deg, #2b452b 0%, #1e331e 100%);
    border: none;
    color: #ffffff;
}

.contact-card p {
    color: #e8f2e8;
}

.contact-card-split {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 40px;
}

.contact-card-clef {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dancing-clef-white {
    background-image: none;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.contact-card-info {
    flex: 1;
}

.contact-card-info p {
    color: #e8f2e8;
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-link {
    color: inherit;
    text-decoration: none;
}

.contact-link:hover {
    opacity: 0.8;
}

.info-card h3,
.pricing-card h3,
.story-card h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.65rem;
}

.notes-list {
    padding-left: 1.25rem;
}

.notes-list li {
    margin-bottom: 0.6rem;
}

.story-quote {
    color: #374151;
}

.story-meta {
    margin-top: 0.7rem;
    margin-bottom: 0;
    font-weight: 600;
    color: #1f2937;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.review-stars {
    font-size: 1rem;
    margin-bottom: 0.65rem;
    letter-spacing: 0.08em;
}

.review-meta {
    margin-top: 0.45rem;
    margin-bottom: 0;
    color: #4b5563;
    font-weight: 500;
}

.page-banner-image {
    width: 100%;
    display: block;
    margin-bottom: 1.25rem;
}

.story-image-wrap,
.contact-welcome-image-wrap {
    display: flex;
    justify-content: center;
}

.contact-welcome-image-wrap {
    margin-bottom: 1.25rem;
}

.story-image {
    width: 100%;
    max-width: 980px;
    display: block;
}

.contact-welcome-image {
    width: 100%;
    max-width: 800px;
    display: block;
}

.form-gradient-wrap {
    background: linear-gradient(160deg, #ffffff 0%, #e8f2e8 40%, #c8dfc8 80%, #2b452b 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(43, 69, 43, 0.15);
    margin-top: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-grid img:hover {
    transform: scale(1.06);
}

.contact-form-section {
    margin-top: 1rem;
}

.contact-form {
    margin-top: 1rem;
    padding: 1.2rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.9rem;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
    display: grid;
    gap: 1rem;
}

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

.form-group label {
    font-weight: 600;
    color: #1f2937;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem 0.85rem;
    border-radius: 0.6rem;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    font: inherit;
    color: #111;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form button {
    width: 100%;
    border: none;
    border-radius: 0.65rem;
    padding: 0.85rem 1rem;
    font: inherit;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #2b452b 0%, #1e331e 100%);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #3a5c3a 0%, #2b452b 100%);
    transform: translateY(-1px);
}

/* Hero */
.hero {
    position: relative;
    min-height: 80vh;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    overflow: hidden;
}

.hero-overlay {
    min-height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.35));
    border-top-left-radius: 24px !important;
    border-top-right-radius: 24px !important;
    overflow: hidden;
}

.hero-home,
.hero-home .hero-overlay {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    color: #ffffff;
}

.hero h1 {
    font-size: 56px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.hero p {
    font-size: 20px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.services-section {
    position: relative;
    background-image: url('../img/MilaViolin14.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
    padding-left: clamp(18px, 5vw, 60px);
    padding-right: clamp(18px, 5vw, 60px);
    border-radius: 25px;
    margin: 24px auto;
    max-width: 1400px;
}

.services-overlay {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 20px;
}

.section-title {
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    margin: 60px auto;
    box-sizing: border-box;
}

.service-card {
    flex: 1 1 310px;
    max-width: 310px;
    margin: 0;
    padding: 28px 26px;
    border-radius: 22px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3,
.service-card p {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial {
    text-align: center;
    margin-top: 40px;
}

.quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-style: italic;
    margin-top: 10px;
}

.cta {
    text-align: center;
    margin-top: 60px;
    background: transparent;
    padding: 0;
}

.cta .btn-primary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    background: #1f2937;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.parallax-section {
    width: 100%;
    max-width: 100%;
    margin: 10px auto;
    padding-top: 25px;
    padding-bottom: 25px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background-image: url('../img/MilaViolin13.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.55));
    z-index: 0;
}

.parallax-overlay {
    max-width: 640px;
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 28px 24px;
    border-radius: 20px;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(4px);
}

.parallax-overlay h2 {
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.65);
}

.parallax-overlay p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin: auto;
    color: #f8fafc;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

@media (max-width:768px) {

    .parallax-overlay h2 {
        font-size: clamp(26px, 6vw, 34px);
        line-height: 1.25;
    }

    .parallax-overlay p {
        font-size: 16px;
        line-height: 1.6;
    }

}

.parallax-section img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-hero {
    height: 65vh;
    min-height: 520px;
    max-height: 720px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    overflow: hidden;
    position: relative;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.45));
    z-index: 1;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 720px;
    padding: 20px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.6);
}

.page-hero p {
    font-size: 18px;
    color: white;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
}

.hero-section h1,
.about-hero h1 {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-section p,
.about-hero p {
    max-width: 720px;
    margin: auto;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    color: #e5e7eb;
}

.hero-home {
    background-image: url("../img/MilaViolin15.webp");
}

.hero-pricing {
    background-image: url("../img/MilaViolin11.webp");
}

.hero-stories {
    background-image: url("../img/MilaViolin14.webp");
}

.hero-contact {
    background-image: url("../img/MilaViolin22.webp");
}

/* Navigation */
.navbar {
    transition: transform 0.35s ease;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.85);
}

.site-header,
.header {
    border-bottom: none;
    background: #ffffff;
    position: relative;
    transition: transform .35s ease;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.header-content {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}

.navbar-hidden {
    transform: translateY(-100%);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    justify-content: flex-end;
    margin-left: auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333333;
    font-size: 12px;
    transition: color .2s ease;
}

.nav-item:hover {
    color: #0059b3;
}

.nav-item.active {
    color: #0071e3;
}

.nav-icon {
    width: 18px;
    height: 18px;
    margin-bottom: 3px;
}

.nav-icon i,
.nav-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.nav-label {
    font-size: 11px;
}

/* Footer */
.site-footer {
    border-top: 1px solid #e5e7eb;
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
    color: #555;
}

.site-footer p {
    margin-bottom: 0.45rem;
}

.footer-credit {
    margin-top: 6px;
    font-size: 13px;
}

.footer-credit a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
}

.footer-credit a:hover {
    text-decoration: underline;
}

.social-links {
    margin-top: 10px;
}

.site-footer a {
    color: #1f2937;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #1e331e;
    color: white;
    cursor: pointer;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    text-align: center;
}

#myBtn:hover {
    background-color: #2b452b;
}

/* ------------- PRICING REDESIGN (Premium Look) ------------- */

/* 1. Global Setup (Specific to pricing page elements only) */
.pricing-redesign-wrapper .info-card,
.pricing-redesign-wrapper .pricing-card {
    background: linear-gradient(145deg, #ffffff, #fcfcfc);
    border: 1px solid rgba(214, 208, 198, 0.4);
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04),
        0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pricing-redesign-wrapper .info-card:hover,
.pricing-redesign-wrapper .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04);
    border-color: rgba(214, 208, 198, 0.8);
}

/* Add a subtle highlight line at the top to simulate glass/premium card rim */
.pricing-redesign-wrapper .info-card::before,
.pricing-redesign-wrapper .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d8cbb7 0%, #c7b8a3 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-redesign-wrapper .info-card:hover::before,
.pricing-redesign-wrapper .pricing-card:hover::before {
    opacity: 1;
}

/* 2. Typography Upgrades */
.pricing-redesign-wrapper .info-card h3,
.pricing-redesign-wrapper .pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    min-width: 0;
}

.pricing-redesign-wrapper .info-card p,
.pricing-redesign-wrapper .pricing-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
    min-width: 0;
}

/* Target standalone prices to make them pop */
.pricing-redesign-wrapper .price-highlight {
    font-size: 32px;
    font-weight: 700;
    color: #c7b8a3;
    /* Elegant Gold/Beige tone */
    display: block;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

/* Target the duration */
.pricing-redesign-wrapper .duration-highlight {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    display: block;
    margin-bottom: 5px;
}

/* 3. Notes Section Upgrade */
.pricing-redesign-wrapper .notes-list {
    background: #faf8f5;
    padding: 30px 40px;
    border-radius: 12px;
    border-left: 4px solid #c7b8a3;
    list-style-type: none;
}

.pricing-redesign-wrapper .notes-list li {
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Custom list bullet */
.pricing-redesign-wrapper .notes-list li::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: #c7b8a3;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    top: -2px;
}

/* Add a premium accent to grid containers */
.pricing-redesign-wrapper .pricing-grid,
.pricing-redesign-wrapper .info-grid {
    gap: 30px;
    margin-top: 50px;
}

/* Why Hire Mila Green Gradient Container */
.why-hire-container {
    background: linear-gradient(135deg, #ffffff 0%, #dae6da 40%, #2b452b 100%);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .why-hire-container {
        padding: 40px 24px;
    }
}

/* Reduce vertical gaps between sections on Pricing page */
.pricing-redesign-wrapper section[aria-labelledby="pricing-hero-title"] {
    padding-bottom: 40px;
}

.pricing-redesign-wrapper section[aria-labelledby="why-hire-title"] {
    padding-top: 40px;
    padding-bottom: 40px;
}

.pricing-redesign-wrapper section[aria-labelledby="wedding-pricing-title"] {
    padding-top: 40px;
    padding-bottom: 40px;
}

.pricing-redesign-wrapper section[aria-labelledby="other-services-title"] {
    padding-top: 40px;
}

/* Split Layout for Hero Pricing Section */
.pricing-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pricing-split-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-split-text h1 {
    margin-bottom: 20px;
}

/* Global gap reduction for all pricing sections */
.pricing-redesign-wrapper .content-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Global gap reduction for all contact sections */
.contact-page-wrapper .content-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (max-width: 900px) {
    .pricing-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-card-split {
        flex-direction: column;
        gap: 20px;
        padding: 24px 20px;
        text-align: center;
    }

    .dancing-clef {
        font-size: 60px;
    }
}

/* =============================================
   STORIES PAGE REDESIGN
   ============================================= */

/* Wrapper to scope all spacing */
.stories-page-wrapper .content-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Match the side padding to the banners (25px each side) */
.stories-page-wrapper .container {
    padding-left: 0;
    padding-right: 0;
    max-width: calc(100% - 50px);
}

/* Fade-in animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accent Line */
.stories-accent-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2b452b, #8fb88f);
    border-radius: 2px;
    margin-bottom: 16px;
}

.stories-accent-line--gold {
    background: linear-gradient(90deg, #c9a84c, #f0d080);
}

/* Intro section */
.stories-intro {
    padding: 50px 0 30px;
}

.stories-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.stories-intro p {
    color: #555;
    font-size: 1.05rem;
    max-width: 720px;
    line-height: 1.8;
}

/* Sections */
.stories-section {
    padding: 40px 0;
}

.stories-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    text-align: center;
}

.stories-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #2b452b;
    border-radius: 2px;
}

/* Review Card Grid */
.stories-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stories-card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.stories-review-card {
    background: linear-gradient(145deg, #2b452b 0%, #1e331e 100%);
    color: #e8f2e8;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(43, 69, 43, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stories-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(43, 69, 43, 0.3);
}

.stories-review-card p {
    color: #e8f2e8;
    line-height: 1.75;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.stories-stars {
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.stories-reviewer {
    font-weight: 600;
    color: #ffffff !important;
    margin-top: 16px !important;
}

.stories-event {
    font-size: 0.8rem !important;
    color: #a8c8a8 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0 !important;
}

/* Full-width Image Banner */
.stories-banner {
    position: relative;
    width: calc(100% - 50px);
    max-width: 1200px;
    height: 420px;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    margin: 0 auto 15px;
}

.stories-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.stories-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 40px 60px;
    border-radius: 25px;
}

.stories-banner-overlay--bottom {
    justify-content: center;
}

.stories-banner-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.stories-banner-author {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #ddd;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Split Section */
.stories-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
    border-radius: 25px;
    overflow: hidden;
    width: calc(100% - 50px);
    max-width: 1200px;
    margin: 0 auto 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.stories-split-image {
    overflow: hidden;
}

.stories-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.stories-split:hover .stories-split-image img {
    transform: scale(1.03);
}

.stories-split-text {
    background: linear-gradient(145deg, #2b452b 0%, #1a2e1a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 48px;
}

.stories-pull-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: #e8f2e8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.stories-pull-author {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: #a8c8a8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Highlights Grid */
.stories-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stories-highlight-tile {
    border-top: 3px solid #2b452b;
    padding: 28px 0 0;
    position: relative;
}

.stories-tile-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #e0e8e0;
    line-height: 1;
    display: block;
    margin-bottom: 12px;
}

.stories-highlight-tile h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.stories-highlight-tile p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.7;
}

/* CTA Banner */
.stories-cta-banner {
    background: linear-gradient(135deg, #2b452b 0%, #1e331e 100%);
    padding: 70px 0;
    text-align: center;
    margin-top: 15px;
    border-radius: 25px;
    width: calc(100% - 50px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stories-cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 16px;
}

.stories-cta-banner p {
    color: #c0d8c0;
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.stories-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #e8f2e8;
    color: #ffffff;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.stories-cta-btn:hover {
    background: #ffffff;
    color: #2b452b;
}

/* Mobile responsiveness for stories */
@media (max-width: 768px) {

    .stories-card-grid,
    .stories-card-grid--2 {
        grid-template-columns: 1fr;
    }

    .stories-highlights-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stories-split {
        grid-template-columns: 1fr;
    }

    .stories-split-image {
        height: 280px;
    }

    .stories-split-text {
        padding: 40px 24px;
    }

    .stories-banner {
        height: 300px;
    }

    .stories-banner-quote {
        font-size: 1.3rem;
    }

    .stories-banner-overlay {
        padding: 24px;
    }
}

/* Violin Strings & Jumping Notes Animation */
.violin-strings-container {
    position: relative;
    max-width: 600px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.violin-string {
    width: 100%;
    height: 1px;
    background: #c7b8a3;
    opacity: 0.5;
}

.musical-note {
    position: absolute;
    font-size: 28px;
    z-index: 10;
    /* Common animation base, jumpNote defined below */
    animation: jumpNote 2.5s infinite ease-in-out alternate;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Position and delay each note differently for an organic feel */
.note-1 {
    left: 10%;
    bottom: 30px;
    animation-duration: 2.2s;
    font-size: 32px;
    background-image: linear-gradient(135deg, #ff007f 0%, #9b51e0 100%);
}

.note-2 {
    left: 30%;
    bottom: 50px;
    animation-delay: 0.3s;
    animation-duration: 2.6s;
    font-size: 24px;
    background-image: linear-gradient(135deg, #ff8c00 0%, #ff0055 100%);
}

.note-3 {
    left: 50%;
    bottom: 20px;
    animation-delay: 0.7s;
    animation-duration: 2.1s;
    font-size: 36px;
    background-image: linear-gradient(135deg, #ff2a2a 0%, #ffb347 100%);
}

.note-4 {
    left: 70%;
    bottom: 65px;
    animation-delay: 1.1s;
    animation-duration: 2.8s;
    font-size: 28px;
    background-image: linear-gradient(135deg, #9b51e0 0%, #ff007f 100%);
}

.note-5 {
    left: 90%;
    bottom: 35px;
    animation-delay: 1.5s;
    animation-duration: 2.4s;
    font-size: 30px;
    background-image: linear-gradient(135deg, #ff0055 0%, #ff8c00 100%);
}

.note-1 {
    font-size: 55px;
    margin-bottom: -15px;
    /* Adjust alignment since it's so tall */
}

@keyframes jumpNote {
    0% {
        transform: translateY(0) rotate(-15deg);
    }

    100% {
        transform: translateY(-40px) rotate(15deg);
    }
}

/* Dancing Treble Clef */
.dancing-clef-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.dancing-clef {
    font-size: 80px;
    background-image: linear-gradient(135deg, #ff007f 0%, #9b51e0 50%, #ff8c00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    animation: dancingClef 1.8s infinite ease-in-out;
    transform-origin: bottom center;
}

@keyframes dancingClef {
    0% {
        transform: rotate(-12deg) translateY(0px) scaleX(1);
    }

    20% {
        transform: rotate(10deg) translateY(-12px) scaleX(0.95);
    }

    40% {
        transform: rotate(-8deg) translateY(-20px) scaleX(1.05);
    }

    60% {
        transform: rotate(14deg) translateY(-10px) scaleX(0.97);
    }

    80% {
        transform: rotate(-6deg) translateY(-5px) scaleX(1.02);
    }

    100% {
        transform: rotate(-12deg) translateY(0px) scaleX(1);
    }
}