/* =================================================================== */
/* == MEMORYCHAIN — SAMPLES GALLERY PAGE STYLES                     == */
/* == Phase D: samples.css                                          == */
/* =================================================================== */


/* =================================================================== */
/* == SECTION 1: DESIGN TOKENS — Exact match to site system         == */
/* =================================================================== */
:root {
    --rose:         #B76E79;
    --rose-light:   #D4959E;
    --rose-deep:    #9A5562;
    --plum:         #6B4C5E;
    --plum-light:   #8B6478;
    --plum-deep:    #4A3040;
    --cream:        #FAF6F0;
    --cream-warm:   #F5EDE3;
    --gold:         #C9A96E;
    --gold-light:   #E8D5A8;
    --white:        #FFFFFF;
    --text-dark:    #2C2C2C;
    --text-mid:     #4A4A4A;
    --text-light:   #6B6B6B;
    --text-faint:   #9B9B9B;
    --border:       #E8E0D5;
    --border-light: #F0E8DF;
    --shadow-rose:  rgba(183,110,121,0.15);
    --shadow-rose-strong: rgba(183,110,121,0.28);
    --shadow-dark:  rgba(44,44,44,0.08);

    --font-display:  'Playfair Display', Georgia, serif;
    --font-dramatic: 'Cormorant Garamond', Georgia, serif;
    --font-body:     'Inter', system-ui, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration: 0.35s;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}


/* =================================================================== */
/* == SECTION 2: RESET & BASE                                       == */
/* =================================================================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; -webkit-font-smoothing:antialiased; scroll-behavior:smooth; }
body { font-family:var(--font-body); background:var(--cream); color:var(--text-dark); line-height:1.6; overflow-x:hidden; }
a { color:inherit; text-decoration:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }


/* =================================================================== */
/* == SECTION 3: NAVBAR — Same as retrieve.css                      == */
/* =================================================================== */
.navbar {
    position: fixed; top:0; left:0; right:0; z-index:100;
    background: rgba(250,246,240,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 var(--border-light), 0 4px 24px var(--shadow-dark);
}
.nav-inner {
    max-width: 1200px; margin:0 auto; padding:16px 48px;
    display:flex; align-items:center; gap:32px;
}
.nav-logo { font-family:var(--font-display); font-size:20px; font-weight:700; color:var(--plum-deep); margin-right:auto; }
.nav-links { display:flex; align-items:center; gap:32px; }
.nav-links a { font-size:14px; font-weight:500; color:var(--text-light); transition:color var(--duration); }
.nav-links a:hover { color:var(--rose); }
.nav-cta {
    display:inline-block; padding:10px 24px;
    background:linear-gradient(135deg, var(--rose), var(--plum));
    color:var(--white); font-size:14px; font-weight:600; border-radius:100px;
    transition:all var(--duration) var(--ease-out);
    box-shadow:0 4px 16px var(--shadow-rose);
}
.nav-cta:hover { transform:translateY(-2px); box-shadow:0 8px 24px var(--shadow-rose-strong); }
.nav-hamburger { display:none; flex-direction:column; gap:5px; padding:4px; }
.nav-hamburger span { display:block; width:22px; height:2px; background:var(--plum-deep); border-radius:2px; transition:all var(--duration); }
.mobile-menu {
    position:fixed; inset:0; background:var(--cream); z-index:1100;
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:32px;
    transform:translateX(100%); transition:transform 0.45s var(--ease-out);
}
.mobile-menu.open { transform:translateX(0); }
.mobile-menu ul { display:flex; flex-direction:column; align-items:center; gap:24px; list-style:none; }
.mobile-menu a { font-family:var(--font-display); font-size:28px; font-weight:600; color:var(--plum-deep); }
.mobile-cta { padding:18px 40px; background:linear-gradient(135deg,var(--rose),var(--plum)); color:var(--white) !important; font-family:var(--font-body) !important; font-size:16px !important; font-weight:600; border-radius:100px; }
.mobile-menu-close { position:absolute; top:28px; right:28px; font-size:24px; color:var(--text-mid); }


/* =================================================================== */
/* == SECTION 4: PAGE HERO                                          == */
/* =================================================================== */
.page-hero {
    background: linear-gradient(150deg, var(--plum-deep) 0%, var(--plum) 45%, var(--rose-deep) 100%);
    padding: 140px 48px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position:absolute; inset:0;
    background:radial-gradient(ellipse 70% 80% at 50% 50%, rgba(183,110,121,0.2) 0%, transparent 70%);
    pointer-events:none;
}
.page-hero-inner { position:relative; z-index:1; max-width:720px; margin:0 auto; }
.page-eyebrow {
    font-size:12px; font-weight:600; letter-spacing:0.2em; text-transform:uppercase;
    color:var(--gold-light); margin-bottom:16px;
}
.page-title {
    font-family:var(--font-display); font-size:clamp(40px,5.5vw,68px); font-weight:700;
    color:var(--white); line-height:1.1; letter-spacing:-0.01em; margin-bottom:20px;
}
.page-title em { font-style:italic; color:var(--gold-light); }
.page-subtitle {
    font-family:var(--font-dramatic); font-size:clamp(17px,2vw,22px); font-weight:300;
    color:rgba(255,255,255,0.75); line-height:1.65; margin-bottom:32px;
}
.watermark-notice {
    display:inline-flex; align-items:center; gap:10px;
    background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2);
    border-radius:100px; padding:10px 20px;
    font-size:13px; color:rgba(255,255,255,0.7);
    backdrop-filter:blur(8px);
}
.wm-icon { font-size:14px; }
.hero-curve { position:absolute; bottom:-1px; left:0; right:0; height:60px; line-height:0; }
.hero-curve svg { width:100%; height:100%; display:block; }


/* =================================================================== */
/* == SECTION 5: GALLERY SECTION                                    == */
/* =================================================================== */
.gallery-section { padding:64px 0 80px; }
.gallery-inner { max-width:1200px; margin:0 auto; padding:0 48px; }


/* =================================================================== */
/* == SECTION 6: TIER TABS                                          == */
/* =================================================================== */
.tier-tabs {
    display:flex; gap:8px; margin-bottom:48px;
    background:var(--white); border:1.5px solid var(--border);
    border-radius:var(--radius-xl); padding:8px;
    width:fit-content;
}
.tier-tab {
    display:flex; flex-direction:column; align-items:center;
    padding:14px 36px; border-radius:var(--radius-lg);
    transition:all var(--duration) var(--ease-out);
    cursor:pointer;
}
.tab-tier-name { font-size:15px; font-weight:600; color:var(--text-light); transition:color var(--duration); }
.tab-price { font-size:12px; color:var(--text-faint); margin-top:2px; transition:color var(--duration); }
.tier-tab.active {
    background:linear-gradient(135deg, var(--rose), var(--plum));
    box-shadow:0 4px 20px var(--shadow-rose-strong);
}
.tier-tab.active .tab-tier-name { color:var(--white); }
.tier-tab.active .tab-price { color:rgba(255,255,255,0.75); }
.tier-tab:hover:not(.active) .tab-tier-name { color:var(--rose); }


/* =================================================================== */
/* == SECTION 7: TIER PANELS                                        == */
/* =================================================================== */
.tier-panel { display:none; animation:panelIn 0.4s var(--ease-out); }
.tier-panel.active { display:block; }
@keyframes panelIn {
    from { opacity:0; transform:translateY(16px); }
    to   { opacity:1; transform:translateY(0); }
}


/* =================================================================== */
/* == SECTION 8: TIER INTRO                                         == */
/* =================================================================== */
.tier-intro {
    display:grid; grid-template-columns:1fr 1fr;
    gap:48px; margin-bottom:48px;
    background:var(--white); border:1.5px solid var(--border);
    border-radius:var(--radius-xl); padding:40px;
    box-shadow:0 4px 24px var(--shadow-dark);
}
.tier-badge {
    display:inline-block; padding:6px 16px; border-radius:100px;
    font-size:12px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
    margin-bottom:16px;
}
.tier-badge--lite    { background:linear-gradient(135deg,rgba(183,110,121,0.12),rgba(107,76,94,0.12)); color:var(--rose-deep); border:1px solid var(--rose-light); }
.tier-badge--classic { background:linear-gradient(135deg,rgba(201,169,110,0.15),rgba(183,110,121,0.15)); color:#8B6820; border:1px solid var(--gold); }
.tier-badge--legacy  { background:linear-gradient(135deg,var(--plum-deep),var(--plum)); color:var(--white); }

.tier-intro-heading {
    font-family:var(--font-display); font-size:clamp(22px,2.5vw,30px);
    font-weight:600; color:var(--plum-deep); line-height:1.25; margin-bottom:12px;
}
.tier-intro-sub { font-size:15px; color:var(--text-mid); line-height:1.75; }

.tier-deliverables { display:flex; flex-direction:column; gap:16px; }
.deliverable-item {
    display:flex; align-items:flex-start; gap:14px;
    padding:14px; border-radius:var(--radius-md);
    background:var(--cream); border:1px solid var(--border-light);
    transition:border-color var(--duration);
}
.deliverable-item:hover { border-color:var(--rose-light); }
.deliverable-item--new {
    background:linear-gradient(135deg,rgba(183,110,121,0.06),rgba(107,76,94,0.06));
    border-color:var(--rose-light);
}
.del-icon { font-size:20px; flex-shrink:0; margin-top:2px; }
.deliverable-item strong { display:block; font-size:14px; font-weight:600; color:var(--plum-deep); margin-bottom:3px; }
.deliverable-item p { font-size:13px; color:var(--text-light); line-height:1.5; margin:0; }
.new-badge {
    display:inline-block; padding:2px 8px; border-radius:4px;
    background:var(--rose); color:var(--white);
    font-size:10px; font-weight:600; letter-spacing:0.04em;
    margin-left:6px; vertical-align:middle;
}
.new-badge--legacy { background:var(--plum-deep); }


/* =================================================================== */
/* == SECTION 9: SAMPLES GRID                                       == */
/* =================================================================== */
.samples-grid {
    display:grid; grid-template-columns:repeat(3,1fr);
    gap:24px; margin-bottom:40px;
}

/* Reveal animation */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s var(--ease-out),transform 0.7s var(--ease-out); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.2s; }


/* =================================================================== */
/* == SECTION 10: SAMPLE CARDS                                      == */
/* =================================================================== */
.sample-card {
    background:var(--white); border:1.5px solid var(--border);
    border-radius:var(--radius-xl); overflow:hidden;
    transition:all var(--duration) var(--ease-out);
    display:flex; flex-direction:column;
}
.sample-card:hover {
    border-color:var(--rose-light);
    box-shadow:0 16px 48px var(--shadow-rose);
    transform:translateY(-4px);
}
.sample-card--featured {
    border-color:var(--plum-light);
    box-shadow:0 8px 32px var(--shadow-rose);
}
.sample-card-label {
    padding:14px 20px; font-size:11px; font-weight:700;
    letter-spacing:0.12em; text-transform:uppercase; color:var(--rose);
    border-bottom:1px solid var(--border-light); background:var(--cream);
}
.sample-card-note {
    padding:14px 20px; font-size:12px; color:var(--text-faint);
    line-height:1.6; border-top:1px solid var(--border-light);
    background:var(--cream); flex-shrink:0;
}


/* =================================================================== */
/* == SECTION 11: SAMPLE MOCKUPS — Base                             == */
/* =================================================================== */
.sample-mockup {
    position:relative; flex:1; min-height:320px;
    overflow:hidden; display:flex; align-items:stretch;
}

/* Watermark overlay */
.wm-overlay {
    position:absolute; top:50%; left:50%;
    transform:translate(-50%,-50%) rotate(-30deg);
    font-family:var(--font-display); font-size:56px; font-weight:700;
    color:rgba(183,110,121,0.06); pointer-events:none; z-index:10;
    letter-spacing:0.12em; white-space:nowrap; user-select:none;
}


/* =================================================================== */
/* == SECTION 12: DIARY MOCKUP                                      == */
/* =================================================================== */
.sample-mockup--diary { background:var(--white); border-bottom:1px solid var(--border-light); }
.diary-page { padding:32px 28px; width:100%; }
.diary-chapter {
    font-size:10px; font-weight:600; letter-spacing:0.16em;
    text-transform:uppercase; color:var(--rose); margin-bottom:12px;
}
.diary-rule { height:1px; background:linear-gradient(90deg,var(--rose-light),transparent); margin-bottom:20px; }
.diary-text {
    font-family:var(--font-dramatic); font-size:15px; font-weight:300;
    color:var(--text-dark); line-height:1.9; margin-bottom:16px;
}
.diary-footer { margin-top:24px; text-align:center; }
.diary-page-num { font-size:11px; color:var(--text-faint); letter-spacing:0.1em; }
.sample-mockup--classic .diary-chapter { color:var(--gold); }
.sample-mockup--classic .diary-rule { background:linear-gradient(90deg,var(--gold-light),transparent); }


/* =================================================================== */
/* == SECTION 13: ALBUM MOCKUP                                      == */
/* =================================================================== */
.sample-mockup--album { background:var(--cream-warm); }
.album-spread { padding:24px; width:100%; display:flex; flex-direction:column; gap:12px; }
.album-photo-row { display:flex; gap:8px; }
.album-photo-row--single .album-photo { height:120px; }
.album-photo { flex:1; border-radius:8px; min-height:80px; background:var(--border); }

/* Photo color variants */
.ap1 { background:linear-gradient(135deg,#E8D5D0,#D4B8C0); }
.ap2 { background:linear-gradient(135deg,#D4C5B5,#C8B5A5); }
.ap3 { background:linear-gradient(135deg,#C5D5D0,#B5C8C5); }
.ap4 { background:linear-gradient(135deg,#D0C5E0,#C0B5D0); }
.ap5 { background:linear-gradient(135deg,#E0D5C0,#D0C5B0); }
.ap6 { background:linear-gradient(135deg,#D5E0D0,#C5D0C0); }
.ap7 { background:linear-gradient(135deg,#E0C5C0,#D0B5B0); min-height:160px; }
.ap8 { background:linear-gradient(135deg,#C0C5D5,#B0B5C5); }

.album-caption-block { text-align:center; padding-top:4px; }
.album-caption {
    font-family:var(--font-dramatic); font-size:14px; font-style:italic;
    color:var(--text-mid); line-height:1.5; margin-bottom:6px;
}
.album-page-num { font-size:11px; color:var(--text-faint); letter-spacing:0.06em; }

/* Classic album */
.album-spread--classic { justify-content:space-between; }
.classic-title-block { padding:8px 0; }
.classic-subtitle { font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); }
.classic-title {
    font-family:var(--font-display); font-size:22px; font-weight:700;
    color:var(--plum-deep); line-height:1.2; margin-top:4px;
}
.classic-caption { color:var(--plum-light); }

/* Legacy album */
.album-spread--legacy { justify-content:space-between; }
.legacy-top-row .album-photo { height:160px; flex:1; }
.legacy-bottom-row { display:flex; gap:12px; align-items:center; }
.legacy-bottom-row .album-photo { height:100px; flex:0 0 45%; }
.legacy-text-block { flex:1; }
.legacy-quote {
    font-family:var(--font-dramatic); font-size:15px; font-style:italic;
    color:var(--plum-deep); line-height:1.6; margin-bottom:8px;
}
.legacy-page { font-size:11px; color:var(--text-faint); }


/* =================================================================== */
/* == SECTION 14: VOICE MOCKUP                                      == */
/* =================================================================== */
.sample-mockup--voice { background:var(--plum-deep); }
.voice-player { padding:28px 24px; width:100%; display:flex; flex-direction:column; gap:16px; }
.voice-waveform { padding:16px 0; }
.wave-bars { display:flex; align-items:center; gap:3px; height:60px; }
.bar {
    flex:1; background:rgba(255,255,255,0.3); border-radius:2px;
    height:var(--h,40%);
    animation:wavePulse 1.8s ease-in-out infinite;
}
.bar:nth-child(odd) { animation-delay:0.15s; }
.bar:nth-child(3n) { animation-delay:0.3s; }
@keyframes wavePulse {
    0%,100% { opacity:0.3; transform:scaleY(0.8); }
    50%      { opacity:1;   transform:scaleY(1.1); }
}
.voice-meta { display:flex; justify-content:space-between; align-items:center; }
.voice-label { font-size:12px; font-weight:600; color:rgba(255,255,255,0.6); letter-spacing:0.06em; }
.voice-duration { font-size:13px; color:var(--gold-light); font-weight:600; }
.voice-desc { font-size:13px; color:rgba(255,255,255,0.5); line-height:1.65; }


/* =================================================================== */
/* == SECTION 15: VIDEO MOCKUP                                      == */
/* =================================================================== */
.sample-mockup--video { background:#1A1A2E; }
.sample-mockup--legacy-video { background:#2A1A2E; }
.video-frame { padding:20px; width:100%; display:flex; flex-direction:column; gap:12px; }
.video-screen {
    background:linear-gradient(135deg,var(--plum-deep),#2A1A3E);
    border-radius:var(--radius-md); min-height:180px;
    display:flex; align-items:center; justify-content:center;
    flex-direction:column; gap:12px; position:relative; overflow:hidden;
}
.video-screen--legacy { background:linear-gradient(135deg,#2A0A2E,var(--plum-deep)); }
.video-play-btn {
    width:56px; height:56px; border-radius:50%;
    background:rgba(255,255,255,0.15); border:2px solid rgba(255,255,255,0.4);
    display:flex; align-items:center; justify-content:center;
    font-size:18px; color:var(--white); padding-left:4px;
    transition:all var(--duration);
}
.video-play-btn:hover { background:rgba(255,255,255,0.25); transform:scale(1.1); }
.video-overlay-text { text-align:center; }
.video-title-text { font-family:var(--font-display); font-size:14px; font-weight:600; color:var(--white); }
.video-sub-text { font-size:12px; color:rgba(255,255,255,0.5); margin-top:4px; }
.video-progress-bar { height:3px; background:rgba(255,255,255,0.1); border-radius:2px; overflow:hidden; }
.video-progress-fill { height:100%; width:60%; background:linear-gradient(90deg,var(--rose),var(--plum)); border-radius:2px; }
.video-meta-row { display:flex; justify-content:space-between; }
.video-label { font-size:12px; color:rgba(255,255,255,0.4); }
.video-time { font-size:12px; color:var(--gold-light); font-weight:600; }


/* =================================================================== */
/* == SECTION 16: AI VIDEO MOCKUP                                   == */
/* =================================================================== */
.sample-mockup--ai-video { background:linear-gradient(160deg,var(--plum-deep),#1A0A2E); }
.ai-video-frame { padding:24px; width:100%; display:flex; flex-direction:column; gap:16px; }
.portrait-container { position:relative; text-align:center; }
.portrait-bg {
    width:100px; height:100px; border-radius:50%; margin:0 auto;
    background:linear-gradient(135deg,var(--plum-light),var(--rose));
    box-shadow:0 0 40px rgba(183,110,121,0.4);
    animation:portraitGlow 3s ease-in-out infinite;
}
@keyframes portraitGlow {
    0%,100% { box-shadow:0 0 30px rgba(183,110,121,0.3); }
    50%      { box-shadow:0 0 60px rgba(183,110,121,0.6); }
}
.portrait-face {
    position:absolute; top:50%; left:50%;
    transform:translate(-50%,-50%);
    display:flex; flex-direction:column; align-items:center; gap:8px;
}
.face-oval {
    width:40px; height:52px; border-radius:50%;
    background:rgba(255,255,255,0.2); border:2px solid rgba(255,255,255,0.4);
}
.talking-indicator { display:flex; gap:3px; align-items:flex-end; height:14px; }
.talking-indicator span {
    display:block; width:3px; background:var(--gold-light); border-radius:2px;
    animation:talkBar 0.8s ease-in-out infinite;
}
.talking-indicator span:nth-child(1) { height:6px; animation-delay:0s; }
.talking-indicator span:nth-child(2) { height:12px; animation-delay:0.15s; }
.talking-indicator span:nth-child(3) { height:8px; animation-delay:0.3s; }
@keyframes talkBar {
    0%,100% { transform:scaleY(0.5); opacity:0.5; }
    50%      { transform:scaleY(1.3); opacity:1; }
}
.portrait-label { font-size:11px; color:rgba(255,255,255,0.4); margin-top:10px; }
.ai-badge {
    display:inline-block; padding:4px 12px; border-radius:100px;
    background:rgba(201,169,110,0.15); border:1px solid rgba(201,169,110,0.3);
    font-size:11px; font-weight:600; color:var(--gold-light); letter-spacing:0.06em;
}
.ai-desc { font-size:13px; color:rgba(255,255,255,0.55); line-height:1.65; }
.ai-specs { display:flex; gap:8px; font-size:12px; color:rgba(255,255,255,0.35); flex-wrap:wrap; }
.ai-video-meta { display:flex; flex-direction:column; gap:10px; }


/* =================================================================== */
/* == SECTION 17: TIER CTA ROW                                      == */
/* =================================================================== */
.tier-cta-row { text-align:center; padding:8px 0 16px; }
.tier-cta-btn {
    display:inline-block; padding:18px 48px;
    background:linear-gradient(135deg,var(--rose),var(--plum));
    color:var(--white); font-size:16px; font-weight:600;
    border-radius:100px; letter-spacing:0.02em;
    box-shadow:0 8px 28px var(--shadow-rose-strong);
    transition:all var(--duration) var(--ease-out);
}
.tier-cta-btn:hover { transform:translateY(-2px); box-shadow:0 12px 40px var(--shadow-rose-strong); }
.tier-cta-btn--legacy { background:linear-gradient(135deg,var(--plum),var(--plum-deep)); }
.tier-cta-note { margin-top:12px; font-size:12px; color:var(--text-faint); }


/* =================================================================== */
/* == SECTION 18: INPUT QUALITY SECTION                             == */
/* =================================================================== */
.quality-section { background:var(--white); border-top:1px solid var(--border-light); padding:80px 48px; }
.quality-inner { max-width:900px; margin:0 auto; }
.quality-card {
    background:linear-gradient(160deg,var(--cream) 0%,var(--cream-warm) 100%);
    border:1.5px solid var(--border); border-radius:var(--radius-xl);
    padding:48px; text-align:center;
    box-shadow:0 4px 24px var(--shadow-dark);
}
.quality-icon { font-size:32px; display:block; margin-bottom:16px; color:var(--gold); }
.quality-heading {
    font-family:var(--font-display); font-size:clamp(28px,3.5vw,42px);
    font-weight:700; color:var(--plum-deep); margin-bottom:16px;
}
.quality-body { font-size:16px; color:var(--text-mid); line-height:1.75; max-width:640px; margin:0 auto 32px; }
.quality-tips { display:grid; grid-template-columns:1fr 1fr; gap:12px; text-align:left; }
.quality-tip {
    display:flex; align-items:flex-start; gap:12px;
    background:var(--white); border:1px solid var(--border);
    border-radius:var(--radius-md); padding:16px;
    font-size:14px; color:var(--text-mid); line-height:1.6;
}
.qt-icon { font-size:18px; flex-shrink:0; }


/* =================================================================== */
/* == SECTION 19: FINAL CTA                                         == */
/* =================================================================== */
.final-cta {
    background:linear-gradient(150deg,var(--plum-deep) 0%,var(--plum) 40%,var(--rose-deep) 100%);
    padding:100px 48px; text-align:center; position:relative; overflow:hidden;
}
.final-cta::before {
    content:''; position:absolute; inset:0;
    background:radial-gradient(ellipse 70% 70% at 50% 50%,rgba(183,110,121,0.2) 0%,transparent 70%);
}
.final-cta-inner { position:relative; z-index:1; max-width:640px; margin:0 auto; }
.final-eyebrow { font-size:12px; font-weight:600; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold-light); margin-bottom:16px; }
.final-heading {
    font-family:var(--font-display); font-size:clamp(36px,5vw,60px);
    font-weight:700; color:var(--white); line-height:1.1; margin-bottom:32px;
}
.final-heading em { font-style:italic; color:var(--gold-light); }
.final-btn {
    display:inline-block; padding:20px 52px;
    background:var(--white); color:var(--plum-deep);
    font-size:17px; font-weight:700; border-radius:100px;
    box-shadow:0 8px 32px rgba(0,0,0,0.2);
    transition:all var(--duration) var(--ease-out); margin-bottom:20px;
}
.final-btn:hover { transform:translateY(-3px); box-shadow:0 16px 48px rgba(0,0,0,0.25); }
.final-sub { font-size:14px; color:rgba(255,255,255,0.5); }


/* =================================================================== */
/* == SECTION 20: FOOTER                                            == */
/* =================================================================== */
.footer { background:var(--plum-deep); padding:48px; border-top:1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width:1200px; margin:0 auto; display:flex; flex-direction:column; align-items:center; gap:24px; text-align:center; }
.footer-logo { font-family:var(--font-display); font-size:22px; font-weight:700; color:var(--white); }
.footer-links { display:flex; flex-wrap:wrap; gap:24px; justify-content:center; }
.footer-links a { font-size:13px; color:rgba(255,255,255,0.5); transition:color var(--duration); }
.footer-links a:hover { color:var(--white); }
.footer-copy { font-size:12px; color:rgba(255,255,255,0.25); }


/* =================================================================== */
/* == SECTION 21: RESPONSIVE                                        == */
/* =================================================================== */
@media (max-width: 960px) {
    .gallery-inner { padding:0 24px; }
    .tier-intro { grid-template-columns:1fr; gap:24px; }
    .samples-grid { grid-template-columns:1fr; }
    .quality-tips { grid-template-columns:1fr; }
    .tier-tabs { width:100%; justify-content:stretch; }
    .tier-tab { flex:1; padding:12px 16px; }
}
@media (max-width: 640px) {
    .page-hero { padding:120px 24px 80px; }
    .gallery-section { padding:40px 0 60px; }
    .tier-intro { padding:24px; }
    .quality-section { padding:60px 24px; }
    .quality-card { padding:32px 24px; }
    .final-cta { padding:72px 24px; }
    .footer { padding:40px 24px; }
    .nav-links { display:none; }
    .nav-hamburger { display:flex; }
}