@import url('https://fonts.googleapis.com/css2?family=LXGW+WenKai+Mono+TC&family=Tangerine:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italianno&family=LXGW+WenKai+Mono+TC&family=Tangerine:wght@400;700&display=swap');
/* --- Variables & Reset --- */
:root {
    --bg-color: #FAF9F6;
    /* Off white */
    --text-color: #3E2723;
    /* Espresso */
    --accent-color: #C77A8C;
    /* Dusty Rose */
    --border-color: rgba(62, 39, 35, 0.15);
    /* Subtle border for sidebar */

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;

    --announcement-height: 40px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Announcement Bar --- */
.announcement-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--announcement-height);
    background-color: var(--accent-color);
    color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    overflow: hidden;
    transition: height 0.3s ease;
}

.announcement-bar p {
    margin: 0;
    padding: 0 40px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.close-announcement {
    position: absolute;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--bg-color);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.close-announcement:hover {
    opacity: 0.7;
}

/* --- Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    position: absolute;
    top: var(--announcement-height);
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
    transition: background-color 0.4s ease, padding 0.4s ease, top 0.3s ease;
}

.navbar.scrolled {
    position: fixed;
    top: 0;
}

.navbar.scrolled,
.navbar.solid {
    background-color: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(8px);
    padding: 1rem 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-logo {
    /* font-family: "Tangerine", cursive; */
    font-family: "Italianno", cursive;
    /* font-style: italic; */
    font-weight: 400;             /* Normal weight preserves the delicate thin lines */
    letter-spacing: 0.04em;       /* Adds the elegant, airy spacing between letters */
    color: var(--text-color);
    font-size: 3rem;
    line-height: 1;
}

.brand-subtitle {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-color);
    text-align: center;
    margin-top: -0.2rem;
    opacity: 0.8;
}

.nav-brand a {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

.cart-btn svg {
    stroke-width: 1.2;
    transition: transform 0.3s ease;
}

.cart-btn:hover svg {
    transform: scale(1.1);
}

.menu-btn {
    background: none;
    border: 1px solid var(--text-color);
    padding: 12px 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 38px;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background-color: rgba(62, 39, 35, 0.05);
}

.hamburger-line {
    width: 100%;
    height: 1px;
    background-color: var(--text-color);
}

/* --- Sidebar --- */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(2px);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.sidebar {
    position: fixed;
    top: 0;
    right: -500px;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 200;
    transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-color);
    overflow-y: auto;
}

.sidebar.open {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem 3rem;
    gap: 2rem;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.nav-section {
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 3rem;
}

.nav-section:last-child {
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-num {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    opacity: 0.6;
}

.section-title h2 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-color);
}

.section-links {
    list-style: none;
    padding-left: 2.6rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.section-links li a {
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.section-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--text-color);
    transition: width 0.3s ease;
}

.section-links li a:hover::after {
    width: 100%;
}

.section-links li a.active {
    color: var(--accent-color);
}

.section-links li a.active::after {
    width: 100%;
    background-color: var(--accent-color);
}

/* --- Hero Slideshow --- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    /* Simulate a premium image overlay */
    background-blend-mode: overlay;
    background-image: linear-gradient(to bottom, rgba(250, 249, 246, 0.3), rgba(250, 249, 246, 0.7));
}

.placeholder-img h2 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
}

.placeholder-img p {
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-color);
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
}

.slide.active .placeholder-img h2,
.slide.active .placeholder-img p {
    opacity: 1;
    transform: translateY(0);
}

.dots-container {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #faf9f6;
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot.active {
    background-color: #faf9f6;
    transform: scale(1.3);
}

.dot:hover {
    background-color: rgba(250, 249, 246, 0.5);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .navbar.scrolled {
        padding: 1rem 1.5rem;
    }

    .logo-text {
        font-size: 2rem;
    }

    .sidebar {
        width: 100%;
        right: -100%;
        border-left: none;
    }

    .sidebar-header {
        padding: 1.5rem 2rem;
    }

    .nav-section {
        padding: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .placeholder-img h2 {
        font-size: 2.8rem;
    }

    .placeholder-img p {
        font-size: 0.8rem;
    }
}

/* --- Offerings Section --- */
/* --- Hero Tagline Section --- */
.hero-tagline-section {
    background: var(--bg-color);
    padding: 5rem 2rem 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(62, 39, 35, 0.08);
}

.hero-tagline-inner {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.9s ease both;
}

.hero-tagline-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.hero-tagline-sub {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
    color: rgba(62, 39, 35, 0.65);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-tagline-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-tagline-pills span {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-color);
    border: 1px solid rgba(62, 39, 35, 0.25);
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.hero-tagline-pills span:hover {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

.hero-tagline-pills .pill-divider {
    border: none;
    padding: 0;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--accent-color);
    background: transparent !important;
}

.hero-tagline-pills .pill-divider:hover {
    background: transparent !important;
    color: var(--accent-color);
    border: none;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Offerings --- */
.offerings {
    padding: 8rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.offering-block {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.offering-block.reverse {
    flex-direction: row-reverse;
}

.offering-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.offering-subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.offering-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.offering-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--text-color);
    color: var(--bg-color);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--text-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-color);
}

.offering-image {
    flex: 1;
    width: 100%;
}

.offering-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    background-color: rgba(62, 39, 35, 0.05); /* subtle background while loading */
}

.offering-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: rgba(62, 39, 35, 0.05);
    background-image: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .offerings {
        padding: 5rem 2rem;
        gap: 6rem;
    }

    .offering-block,
    .offering-block.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .offering-title {
        font-size: 2.5rem;
    }

    .offering-desc {
        max-width: 100%;
    }
}

/* --- About Artist Section --- */
.about-artist-section {
    padding: 10rem 4rem;
    background-color: var(--bg-color);
    /* blends with the rest */
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8rem;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 450px;
}

.about-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 200px 200px 0 0;
    /* Arch effect */
    background-color: rgba(62, 39, 35, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.about-deco {
    position: absolute;
    top: 3rem;
    left: -3rem;
    width: 100%;
    height: 100%;
    border-radius: 200px 200px 0 0;
    border: 1px solid #3E2723;
    z-index: 1;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #3E2723;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-style: italic;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.about-body p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 5rem;
    }

    .about-deco {
        left: -1.5rem;
        top: 1.5rem;
    }

    .about-artist-section {
        padding: 6rem 2rem;
    }
}

/* --- Page Content (e.g. FAQs) --- */
.page-content {
    padding: 150px 4rem 0 4rem;
    /* Top padding accounts for fixed navbar, 0 bottom padding to touch footer */
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    color: var(--text-color);
}

.faq-container {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border-color);
}

.faq-item details {
    padding: 2rem 0;
    cursor: pointer;
}

.faq-item summary {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-color);
    list-style: none;
    /* Hide default arrow */
    position: relative;
    padding-right: 2rem;
    outline: none;
}

/* Custom arrow for summary */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--text-color);
    border-right: 2px solid var(--text-color);
    transition: transform 0.3s ease;
}

.faq-item details[open] summary::after {
    transform: translateY(-50%) rotate(225deg);
}

.faq-answer {
    padding-top: 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.85;
}

/* --- Process Page --- */
.process-page .intro-text {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-timeline {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    border-left: 1px solid var(--border-color);
    padding-left: 3rem;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

.step-header {
    margin-bottom: 1.5rem;
}

.step-num {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.step-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.2;
}

.step-content p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.process-faqs {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-content {
        padding: 120px 2rem 4rem 2rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .faq-item summary {
        font-size: 1.4rem;
    }
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: #C77A8C;
    color: var(--bg-color);
    padding: 6rem 4rem 4rem 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testi-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.testi-dots-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--bg-color);
    cursor: pointer;
    transition: all 0.4s ease;
}

.testi-dot.active {
    background-color: var(--bg-color);
    transform: scale(1.3);
}

.testi-dot:hover {
    background-color: rgba(250, 249, 246, 0.5);
}

.testi-btn {
    background: transparent;
    border: 1px solid rgba(250, 249, 246, 0.5);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testi-btn:hover {
    border-color: var(--bg-color);
    background-color: rgba(250, 249, 246, 0.1);
}

.testi-slider-container {
    max-width: 800px;
    width: 100%;
    overflow: hidden;
}

.testi-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 0 1rem;
}

.testi-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.testi-name {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1rem 3rem 1rem;
    }

    .testi-text {
        font-size: 1.3rem;
    }

    .testi-controls {
        gap: 1rem;
    }
}

/* --- Call to Action Section --- */
.cta-section {
    background-color: var(--bg-color);
    /* To contrast with the pink footer and pink testimonials */
    padding: 8rem 4rem;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8rem;
}

.ba-slider-container {
    flex: 1;
    position: relative;
    max-width: 500px;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.ba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-img-after {
    background-color: #C77A8C;
}

.ba-img-before {
    background-color: rgba(62, 39, 35, 0.08);
    clip-path: inset(0 50% 0 0);
    /* Cropped half by default */
}

.cta-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--text-color);
    text-transform: uppercase;
}

.ba-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
}

.ba-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #3E2723;
    z-index: 4;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.ba-slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(250, 249, 246, 0.8);
    border: 2px solid #3E2723;
    z-index: 4;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: #3E2723;
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-subtitle {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 4rem;
    line-height: 1.1;
    max-width: 500px;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #C77A8C;
    /* Dusty Rose */
    color: var(--bg-color);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 2px solid var(--bg-color);
    box-shadow: 0 0 0 1px #C77A8C;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3E2723;
    color: var(--bg-color);
    box-shadow: 0 0 0 1px #3E2723;
}

@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        gap: 5rem;
    }

    .cta-section {
        padding: 6rem 2rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

/* --- VIP Section --- */
.vip-section {
    background-color: var(--accent-color);
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.vip-container {
    max-width: 500px;
    width: 100%;
}

.vip-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--bg-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
}

.vip-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--bg-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.vip-desc {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--bg-color);
    margin-bottom: 2.5rem;
}

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

.vip-form input {
    background: transparent;
    border: 1px solid var(--bg-color);
    padding: 1rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--bg-color);
    outline: none;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.vip-form input::placeholder {
    color: var(--bg-color);
    opacity: 0.8;
    text-transform: uppercase;
}

.vip-form input:focus {
    background-color: rgba(250, 249, 246, 0.1);
}

.btn-vip {
    background-color: var(--bg-color);
    color: var(--accent-color);
    border: none;
    padding: 1rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: opacity 0.3s ease;
    border-radius: 4px;
}

.btn-vip:hover {
    opacity: 0.9;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 6rem 4rem 2rem;
    font-family: var(--font-sans);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    gap: 4rem;
    flex: 1;
}

.footer-col h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-links li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: none;
    /* keep emails lowercase */
    letter-spacing: 0.05em;
}

.footer-col a {
    color: var(--bg-color);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    color: var(--bg-color);
}

.footer-right {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
}

.warning-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(250, 249, 246, 0.8);
    margin-bottom: 3rem;
}

.copyright {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(250, 249, 246, 0.5);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 4rem 2rem 2rem 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-left {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-right {
        text-align: left;
        max-width: 100%;
    }
}

/* --- Memorial Flowers Form Styles --- */
.service-pill {
    cursor: pointer;
}

.service-pill input[type="checkbox"] {
    display: none;
}

.service-pill span {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.service-pill input[type="checkbox"]:checked+span {
    background-color: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
}

/* --- Contact Page --- */
.contact-page {

    padding-top: 150px;
    padding-bottom: 6rem;
    background-color: var(--bg-color);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 8rem;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
    max-width: 450px;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-style: italic;
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 2.5rem;
}

.contact-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.3s ease;
}

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

.contact-socials {
    display: flex;
    gap: 1.2rem;
    margin-top: 3rem;
}

.contact-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.contact-socials a:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.contact-right {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-form .form-group-name {
    display: flex;
    gap: 2rem;
}

.contact-form .form-group-name .form-field {
    flex: 1;
}

.contact-form .form-field {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    text-transform: capitalize;
}

.contact-form .visually-hidden {
    visibility: hidden;
}

.contact-form label .required {
    opacity: 0.6;
    text-transform: none;
    font-style: italic;
    font-size: 0.8rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(62, 39, 35, 0.4);
    padding: 0.5rem 0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-color);
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form textarea {
    resize: vertical;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-color);
    opacity: 0.4;
    font-size: 0.85rem;
}

.contact-form .btn-secondary {
    align-self: flex-start;
    padding: 1rem 3rem;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 5rem;
        padding: 0 2rem;
    }

    .contact-left {
        max-width: 100%;
    }

    .contact-form .form-group-name {
        flex-direction: column;
        gap: 2.5rem;
    }
}

/* --- Extra Mobile Adjustments (< 768px and < 576px) --- */
@media (max-width: 768px) {
    /* Reduce global paddings */
    .offerings {
        padding: 4rem 1.5rem;
        gap: 4rem;
    }
    
    .about-artist-section {
        padding: 4rem 1.5rem;
    }
    
    .about-container {
        gap: 3rem;
    }
    
    .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .cta-container {
        gap: 3rem;
    }
    
    .vip-section {
        padding: 4rem 1.5rem;
    }
    
    .vip-title {
        font-size: 2.2rem;
    }
    
    .testimonials-section {
        padding: 4rem 1.5rem 3rem 1.5rem;
    }
    
    .testi-text {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    /* Process Timeline Adjustments */
    .process-timeline {
        margin-top: 2rem;
        gap: 2.5rem;
    }
    
    .step-header h2 {
        font-size: 1.8rem;
    }
    
    .process-step {
        padding-left: 2rem;
    }
    
    /* Footer stacking */
    .footer-left {
        gap: 2rem;
        flex-direction: column;
    }
    
    /* Ensure no text overflows */
    .about-title {
        font-size: 3rem;
    }
    
    .hero-tagline-headline {
        font-size: 2.5rem;
    }
    
    /* Adjust contact forms slightly */
    .contact-form {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 1rem 1rem;
    }
    
    .navbar.scrolled {
        padding: 0.8rem 1rem;
    }
    
    .brand-logo {
        font-size: 2rem;
    }
    
    .brand-subtitle {
        font-size: 0.55rem;
    }
    
    /* Hero Placeholder Adjustments */
    .placeholder-img h2 {
        font-size: 2.2rem;
    }
    
    .placeholder-img p {
        font-size: 0.75rem;
    }
    
    /* Reduce margins/gaps further */
    .offering-title {
        font-size: 2rem;
    }
    
    .offering-block, .offering-block.reverse {
        gap: 2rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary, .btn-vip {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
        width: 100%;
        text-align: center;
    }
    
    /* Sidebar mobile widths */
    .sidebar {
        width: 100%;
    }
    
    .sidebar-header {
        padding: 1.5rem;
    }
    
    .nav-section {
        padding: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    /* Announcement text scrolling/fitting */
    .announcement-bar p {
        font-size: 0.75rem;
        padding: 0 30px;
    }
}