
/* ============================================
    CSS VARIABLES (Brand Kit)
    ============================================ */
:root {
    --ash-brown: #5C4738;
    --med-brown: #735E51;
    --gray-brown: #A69A94;
    --sky-blue: #6ccff6;
    --sage-green: #84e0cc;
    --warm-cream: #FAF7F2;
    --white: #FFFFFF;
    --deep-ash: #3D2E24;

    --font-display: 'Quicksand', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --nav-height: 72px;
}

/* ============================================
    RESET & BASE
    ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--ash-brown);
    background-color: var(--warm-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--ash-brown);
    text-decoration: none;
}

/* ============================================
    TYPOGRAPHY
    ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 500;
}

p {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    /* max-width: 640px; */
}

.subhead {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    line-height: 1.8;
    color: var(--med-brown);
}

.section-label {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-brown);
    margin-bottom: 1.5rem;
}

/* ============================================
    NAVIGATION
    ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
    background-color: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(92, 71, 56, 0.08);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-decoration: none;
}

.nav-logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--ash-brown);
    letter-spacing: 0.04em;
    line-height: 1.1;
    transition: color 0.3s;
}

.nav-logo-sub {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.65rem;
    color: var(--med-brown);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    transition: color 0.3s;
}

.hero-visible .nav-logo-name {
    color: var(--warm-cream);
}

.hero-visible .nav-logo-sub {
    color: rgba(250, 247, 242, 0.7);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    color: var(--ash-brown);
    transition: color 0.3s;
    position: relative;
}

.hero-visible .nav-links a {
    color: rgba(250, 247, 242, 0.85);
}

.hero-visible .nav-links a:hover {
    color: var(--warm-cream);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

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

.nav-cta {
    font-family: var(--font-display) !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.05em !important;
    padding: 0.6rem 1.4rem;
    border: 1.5px solid var(--ash-brown);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-visible .nav-cta {
    border-color: rgba(250, 247, 242, 0.6);
}

.nav-cta:hover {
    background-color: var(--ash-brown);
    color: var(--warm-cream) !important;
}

.hero-visible .nav-cta:hover {
    background-color: rgba(250, 247, 242, 0.15);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: var(--ash-brown);
    transition: all 0.3s;
}

.hero-visible .nav-toggle span {
    background-color: var(--warm-cream);
}

/* ============================================
    HERO (Full-bleed, no containing divs on image)
    ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
    * TO ADD YOUR HERO IMAGE:
    * 1. Replace the <div class="hero-bg"> below with:
    *    <img src="your-hero-image.jpg" alt="Family sharing stories" class="hero-bg">
    * 2. The image will span the full viewport with no containing box.
    * 3. Recommended: at least 2000px wide, warm tones, lifestyle shot.
    */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Placeholder gradient (remove when using a real image) */
div.hero-bg {
    background: linear-gradient(160deg, #5C4738 0%, #735E51 35%, #8B7262 55%, #A69A94 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(61, 46, 36, 0.35) 0%,
        rgba(61, 46, 36, 0.1) 40%,
        rgba(61, 46, 36, 0.55) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    max-width: 820px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--warm-cream);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 24px rgba(61, 46, 36, 0.25);
}

.hero-slogan {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    color: rgba(250, 247, 242, 0.88);
    letter-spacing: 0.02em;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-cream);
    border: 1.5px solid rgba(250, 247, 242, 0.55);
    padding: 1rem 2.4rem;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.hero-cta:hover {
    background-color: rgba(250, 247, 242, 0.12);
    border-color: var(--warm-cream);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(250, 247, 242, 0.45);
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bob 2.5s ease-in-out infinite;
}

.hero-scroll svg {
    width: 18px;
    height: 18px;
    stroke: rgba(250, 247, 242, 0.45);
}

@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
}

/* ============================================
    SHARED SECTION STYLES
    ============================================ */
.section {
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 4vw, 3rem);
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

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

.section-centered p {
    margin-left: auto;
    margin-right: auto;
}

.divider {
    width: 48px;
    height: 2px;
    background-color: var(--gray-brown);
    margin: 2.5rem auto;
    opacity: 0.4;
}

/* ============================================
    INTRO
    ============================================ */
.intro {
    background-color: var(--warm-cream);
}

.intro-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 1.5rem;
}

/* ============================================
    FULL-BLEED IMAGE BREAKS
    To add images: replace the placeholder div with
    <img src="your-image.jpg" alt="description" style="width:100%;height:100%;object-fit:cover;">
    ============================================ */
.image-break {
    width: 100%;
    height: 55vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image_fam {
    object-fit: cover;
    object-position: top;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(166, 154, 148, 0.7);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.img-placeholder.warm {
    background: linear-gradient(135deg, #B5A89E 0%, #C8BCB2 50%, #D9D0C8 100%);
}

.img-placeholder.cool {
    background: linear-gradient(135deg, #C2CFC8 0%, #D0C8C0 50%, #E0D8D0 100%);
}

.image-break-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: rgba(61, 46, 36, 0.45);
}

.image-break-overlay blockquote {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.2rem, 2.5vw, 1.9rem);
    color: var(--warm-cream);
    max-width: 680px;
    line-height: 1.55;
}

/* ============================================
    HOW IT WORKS
    ============================================ */
.how-it-works {
    background-color: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.step {
    position: relative;
}

.step-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: var(--sky-blue);
}

.step h3 {
    color: var(--ash-brown);
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 0.93rem;
    color: var(--med-brown);
    line-height: 1.7;
}
/* ============================================
    PACKAGES (Restructured)
    ============================================ */
.pkg-intro {
    max-width: 620px;
    margin: 1rem auto 0;
}

.pkg-sessions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.pkg-card {
    background: var(--white);
    border: 1px solid rgba(166, 154, 148, 0.18);
    padding: clamp(2rem, 3vw, 2.8rem);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.pkg-card:hover {
    box-shadow: 0 12px 40px rgba(92, 71, 56, 0.07);
    transform: translateY(-2px);
}

.pkg-card-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    margin-bottom: 1.25rem;
}

.pkg-card-badge.blue { background-color: var(--sky-blue); color: var(--ash-brown); }
.pkg-card-badge.green { background-color: var(--sage-green); color: var(--ash-brown); }

.pkg-card h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.pkg-card-duration {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 01rem;
    color: var(--gray-brown);
    margin-bottom: 0.5rem;
}

.pkg-card-price {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--ash-brown);
    margin-bottom: 1rem;
    line-height: 1;
}

.pkg-card-price span {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--gray-brown);
}

.pkg-card-desc {
    font-size: 0.95rem;
    color: var(--med-brown);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: none;
}

.pkg-card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pkg-card-features li {
    font-size: 0.87rem;
    color: var(--med-brown);
    padding: 0.35rem 0 0.35rem 1.3rem;
    position: relative;
    line-height: 1.6;
}

.pkg-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--gray-brown);
    opacity: 0.35;
}

.pkg-card .btn {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: var(--ash-brown);
    border: 1.5px solid var(--ash-brown);
    padding: 0.7rem 1.7rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pkg-card .btn:hover {
    background-color: var(--ash-brown);
    color: var(--warm-cream);
}

/* Included with every session */
.pkg-included {
    margin-top: 3.5rem;
    padding: clamp(2rem, 3vw, 2.5rem);
    background: var(--white);
    border: 1px solid rgba(166, 154, 148, 0.18);
    text-align: center;
}

.pkg-included h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--ash-brown);
}

.pkg-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.pkg-included-item {
    font-size: 0.9rem;
    color: var(--med-brown);
    padding-left: 1.3rem;
    position: relative;
    line-height: 1.6;
}

.pkg-included-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--sage-green);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Add-ons */
.pkg-addons-header {
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.pkg-addons-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pkg-addons-header p {
    font-size: 0.93rem;
    color: var(--gray-brown);
    margin: 0 auto;
}

.pkg-addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.addon-card {
    background: var(--white);
    border: 1px solid rgba(166, 154, 148, 0.18);
    padding: clamp(1.5rem, 2.5vw, 2rem);
    transition: box-shadow 0.4s ease;
}

.addon-card:hover {
    box-shadow: 0 8px 30px rgba(92, 71, 56, 0.06);
}

.addon-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.addon-card h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--ash-brown);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.addon-price {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--ash-brown);
    margin-bottom: 0.75rem;
}

.addon-desc {
    font-size: 0.95rem;
    color: var(--med-brown);
    line-height: 1.65;
    max-width: none;
}

.addon-note {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--med-brown);
    font-style: italic;
    line-height: 1.55;
}

.pkg-footnote {
    margin-top: 2.5rem;
    text-align: center;
    font-size: 1rem;
    color: var(--med-brown);
    font-style: italic;
}

/* ============================================
    FAQ
    ============================================ */
.faq {
    background-color: var(--white);
}

.faq-list {
    max-width: 760px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(166, 154, 148, 0.15);
}

.faq-item:first-child {
    border-top: 1px solid rgba(166, 154, 148, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.25rem 2.5rem 1.25rem 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: var(--ash-brown);
    line-height: 1.4;
    position: relative;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--med-brown);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--gray-brown);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.open .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0 0 0;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 0 1.5rem 0;
}

.faq-answer p {
    font-size: 0.93rem;
    color: var(--med-brown);
    line-height: 1.75;
    max-width: none;
}

.faq-answer p + p {
    margin-top: 0.75rem;
}

/* ============================================
    RESPONSIVE ADDITIONS
    ============================================ */
@media (max-width: 768px) {
    .pkg-sessions {
        grid-template-columns: 1fr;
    }

    .pkg-addons-grid {
        grid-template-columns: 1fr;
    }

    .pkg-included-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .pkg-addons-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* ============================================
    PACKAGES
    ============================================ 
.packages {
    background-color: var(--warm-cream);
}

.pkg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.pkg {
    background: var(--white);
    border: 1px solid rgba(166, 154, 148, 0.18);
    padding: clamp(2rem, 3vw, 3rem);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.pkg:hover {
    box-shadow: 0 12px 40px rgba(92, 71, 56, 0.07);
    transform: translateY(-2px);
}

.pkg-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    margin-bottom: 1.25rem;
}

.pkg-badge.blue { background-color: var(--sky-blue); color: var(--ash-brown); }
.pkg-badge.green { background-color: var(--sage-green); color: var(--ash-brown); }

.pkg h3 {
    font-size: 1.55rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.pkg-price {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--gray-brown);
    margin-bottom: 1.25rem;
}

.pkg-desc {
    font-size: 0.95rem;
    color: var(--med-brown);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: none;
}

.pkg-list {
    list-style: none;
    margin-bottom: 2rem;
}

.pkg-list li {
    font-size: 0.88rem;
    color: var(--med-brown);
    padding: 0.35rem 0 0.35rem 1.3rem;
    position: relative;
    line-height: 1.6;
}

.pkg-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--gray-brown);
    opacity: 0.35;
}

.pkg-podcast {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(166, 154, 148, 0.12);
    font-size: 0.82rem;
    color: var(--gray-brown);
    line-height: 1.6;
    font-style: italic;
}

.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--ash-brown);
    border: 1.5px solid var(--ash-brown);
    padding: 0.7rem 1.7rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--ash-brown);
    color: var(--warm-cream);
}

.pkg-footnote {
    margin-top: 2.5rem;
    text-align: center;
    font-size: 0.88rem;
    color: var(--gray-brown);
    font-style: italic;
}*/

/* ============================================
    ORIGIN STORY
    ============================================ */
.origin {
    background-color: var(--deep-ash);
    color: var(--warm-cream);
}

.origin h2 { color: var(--warm-cream); }
.origin .section-label { color: var(--gray-brown); }
.origin .subhead { color: rgba(250, 247, 242, 0.72); }

.origin-quote {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    line-height: 1.8;
    color: rgba(250, 247, 242, 0.82);
    max-width: 660px;
    margin: 2rem auto 0;
    padding-left: 1.5rem;
    border-left: 2px solid var(--gray-brown);
}

.origin-attr {
    margin-top: 1rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gray-brown);
}

/* ============================================
    GIFT SECTION
    ============================================ */
.gift-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    margin-top: 3rem;
}

.gift-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gift-img .img-placeholder {
    border-radius: 0;
}

.gift-text h2 { margin-bottom: 1rem; }
.gift-text p { color: var(--med-brown); margin-bottom: 1rem; }

.gift-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.gift-tag {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.73rem;
    letter-spacing: 0.04em;
    padding: 0.4rem 0.85rem;
    background-color: var(--white);
    color: var(--med-brown);
    border: 1px solid rgba(166, 154, 148, 0.2);
}

/* ============================================
    CTA
    ============================================ */
.cta {
    background-color: var(--ash-brown);
    text-align: center;
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3rem);
}

.cta h2 { color: var(--warm-cream); margin-bottom: 1rem; }

.cta p {
    color: rgba(250, 247, 242, 0.65);
    margin: 0 auto 2rem;
    font-size: 1.02rem;
}

.cta-btn {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--ash-brown);
    background: var(--warm-cream);
    padding: 1rem 2.4rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* ============================================
    FOOTER
    ============================================ */
.footer {
    background-color: var(--deep-ash);
    color: rgba(250, 247, 242, 0.45);
    padding: 3rem clamp(1.5rem, 4vw, 3rem);
}

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

.footer-brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: rgba(250, 247, 242, 0.75);
    letter-spacing: 0.04em;
}

.footer-tagline {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 0.78rem;
    font-style: italic;
    color: rgba(250, 247, 242, 0.35);
    margin-top: 0.25rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(250, 247, 242, 0.45);
    transition: color 0.3s;
}

.footer-links a:hover { color: rgba(250, 247, 242, 0.8); }

.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(250, 247, 242, 0.07);
    font-size: 0.72rem;
}

/* ============================================
    SCROLL ANIMATIONS
    ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ============================================
    RESPONSIVE
    ============================================ */
@media (max-width: 900px) {
    .steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(250, 247, 242, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 8px 24px rgba(92, 71, 56, 0.08);
    }

    .nav-links.open { display: flex; }

    .nav-links a,
    .hero-visible .nav-links a {
        color: var(--ash-brown);
        font-size: 1rem;
    }

    .hero-visible .nav-cta {
        border-color: var(--ash-brown);
    }

    .nav-toggle { display: flex; }

    .steps { grid-template-columns: 1fr; }
    .pkg-grid { grid-template-columns: 1fr; }
    .gift-grid { grid-template-columns: 1fr; }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
}
