/* =========================================================
   Capital Case LLC FZ — Landing Page Styles
   Palette: #F5EFE6 beige · #FFF white · #7B1E2B maroon · #C9A961 gold · #0E0B0B dark
   Fonts: Cormorant Garamond (display) + Outfit (body)
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #F5EFE6;
    color: #1A1A1A;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}
::selection { background:#7B1E2B; color:#F5EFE6; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
p { margin: 0; }

/* ---------- Layout ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 960px; }
.container.narrower { max-width: 780px; }
@media (min-width: 640px) { .container { padding: 0 40px; } }

.section { padding: 96px 0; position: relative; overflow: hidden; }
@media (min-width: 640px) { .section { padding: 128px 0; } }

.section-beige { background: #F5EFE6; }
.section-white { background: #FFFFFF; }
.section-dark  { background: #0E0B0B; color: #FFFFFF; }

/* ---------- Typography ---------- */
.h1, .h2, .h3, .book-title, .book-the, .book-sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #1A1A1A;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0;
}
.h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
.h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1; }
.h3 { font-size: clamp(1.15rem, 1.5vw, 1.5rem); font-weight: 500; }
.light { color: #FFFFFF; }
.light-muted { color: rgba(255,255,255,0.72); }
.maroon { color: #7B1E2B; }
.gold { color: #C9A961; }
.amber { color: #E8D9B0; }
.serif-italic { font-style: italic; font-weight: 400; }
.small { font-size: 0.85em; }
.lead { font-size: 1rem; line-height: 1.7; font-weight: 300; color: #4A4545; margin-top: 24px; max-width: 640px; }
.lead.light-muted { color: rgba(255,255,255,0.72); }
.p-muted { color: #4A4545; font-size: 0.95rem; line-height: 1.65; font-weight: 300; }

/* ---------- Eyebrows / Rules ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 11px;
    font-weight: 500;
    color: #7B1E2B;
    margin-bottom: 24px;
}
.eyebrow.center { justify-content: center; display: flex; }
.eyebrow.gold-eyebrow { color: #C9A961; }
.rule { display: inline-block; width: 32px; height: 1px; background: #C9A961; }
.rule.maroon { background: #7B1E2B; }
.gold-rule { background: linear-gradient(90deg, #C9A961 0%, rgba(201,169,97,0) 100%); }

.section-head { max-width: 780px; margin-bottom: 64px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

.center-cta { display: flex; justify-content: center; margin-top: 64px; }
.center-text { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    transition: background .3s, transform .3s;
    border-radius: 0;
}
.btn .arrow { display: inline-block; transition: transform .3s; }
.btn:hover .arrow { transform: translateX(6px); }
.btn-maroon { background: #7B1E2B; color: #FFF; box-shadow: 0 10px 30px rgba(123,30,43,0.18); }
.btn-maroon:hover { background: #5F1620; }
.btn-gold { background: #C9A961; color: #1A1A1A; box-shadow: 0 20px 40px rgba(201,169,97,0.15); }
.btn-gold:hover { background: #B39554; }
.btn-lg { padding: 18px 30px; font-size: 12px; letter-spacing: 0.2em; }
.btn-xl { padding: 22px 40px; font-size: 13px; letter-spacing: 0.22em; }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 20px 0;
    background: transparent;
    transition: background .5s, padding .5s, box-shadow .5s, border-color .5s;
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(245,239,230,0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: rgba(201,169,97,0.25);
    padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand-link { display: inline-flex; align-items: center; }
.brand-logo {
    height: 48px;
    width: auto;
    transition: filter .5s;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
}
.site-header.scrolled .brand-logo { filter: none; }
@media (min-width: 640px) { .brand-logo { height: 56px; } }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #0E0B0B;
    color: #FFFFFF;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.7) 0%, rgba(0,0,0,.55) 50%, rgba(14,11,11,.95) 100%);
}
.hero-overlay-side {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.8), transparent 60%);
}
.hero-corner {
    position: absolute;
    width: 40px; height: 40px;
    border-color: rgba(201,169,97,0.6);
    display: none;
}
@media (min-width: 768px) { .hero-corner { display: block; } }
.hero-corner-tl { top: 112px; left: 40px; border-left: 1px solid; border-top: 1px solid; }
.hero-corner-br { bottom: 48px; right: 40px; border-right: 1px solid; border-bottom: 1px solid; }

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 160px;
    padding-bottom: 96px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 11px;
    color: #C9A961;
    margin-bottom: 32px;
}
.hero-eyebrow .rule { background: #C9A961; }
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    color: #FFFFFF;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.02em;
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    max-width: 900px;
    margin: 0 0 32px;
}
.hero-sub {
    max-width: 620px;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 40px;
}
.hero-quote {
    border-left: 2px solid #C9A961;
    padding-left: 24px;
    margin-bottom: 48px;
}
.quote-1 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.4rem, 2.2vw, 1.85rem); color: #FFFFFF; line-height: 1.25; }
.quote-2 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; color: rgba(255,255,255,0.72); margin-top: 8px; line-height: 1.3; }

.hero-cta-row { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
@media (min-width: 640px) { .hero-cta-row { flex-direction: row; align-items: center; gap: 22px; } }
.hero-meta {
    display: flex; align-items: center; gap: 14px;
    color: rgba(255,255,255,0.6); font-size: 0.9rem;
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: #C9A961; display: inline-block; }

.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: none; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(201,169,97,0.7);
}
@media (min-width: 640px) { .hero-scroll { display: flex; } }
.hero-scroll span { text-transform: uppercase; letter-spacing: 0.3em; font-size: 10px; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(201,169,97,0.7), transparent); }

/* ---------- Fade animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .8s cubic-bezier(0.16,1,0.3,1) forwards; }
.delay-1 { animation-delay: .1s; opacity: 0; }
.delay-2 { animation-delay: .25s; opacity: 0; }
.delay-3 { animation-delay: .4s; opacity: 0; }

/* ---------- Grain overlay ---------- */
.grain {
    position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
    opacity: 0.06; mix-blend-mode: overlay;
}

/* ---------- Problem / Pain grid ---------- */
.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.1);
}
@media (min-width: 640px) { .pain-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }
.pain {
    background: #0E0B0B;
    padding: 36px;
    display: flex;
    gap: 20px;
    align-items: baseline;
    transition: background .4s;
}
.pain:hover { background: #1A1212; }
.pain-num {
    font-family: 'Cormorant Garamond', serif;
    color: rgba(201,169,97,0.5);
    font-size: 1.7rem;
    transition: color .4s;
    flex-shrink: 0;
}
.pain:hover .pain-num { color: #C9A961; }
.pain p { color: rgba(255,255,255,0.85); font-weight: 300; font-size: 1rem; line-height: 1.45; }

/* ---------- Cards (Solutions) ---------- */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.card { background: #FFFFFF; border: 1px solid rgba(201,169,97,0.25); padding: 32px; position: relative; transition: transform .5s, box-shadow .5s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -20px rgba(123,30,43,0.18); }
.premium-card .card-corner-tl {
    position: absolute; top: 0; left: 0;
    width: 32px; height: 32px;
    background:
        linear-gradient(to right, #C9A961, transparent) top left / 32px 1px no-repeat,
        linear-gradient(to bottom, #C9A961, transparent) top left / 1px 32px no-repeat;
}
.card-icon {
    width: 48px; height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(123,30,43,0.3);
    color: #7B1E2B;
    margin-bottom: 28px;
    transition: background .5s, color .5s;
}
.card-icon svg { width: 22px; height: 22px; }
.card:hover .card-icon { background: #7B1E2B; color: #FFFFFF; }

/* ---------- Takeaways ---------- */
.takeaway-grid {
    display: grid; grid-template-columns: 1fr; gap: 1px;
    background: #E8DFD0;
}
@media (min-width: 640px) { .takeaway-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .takeaway-grid { grid-template-columns: repeat(3, 1fr); } }
.ta { background: #FFFFFF; padding: 36px; transition: background .5s; position: relative; }
.ta:hover { background: #FBF6EC; }
.ta-num { font-family: 'Cormorant Garamond', serif; color: #C9A961; font-size: 1.35rem; font-weight: 500; display: block; }
.ta-line { display: block; width: 32px; height: 1px; background: rgba(201,169,97,0.4); margin: 20px 0; transition: width .5s, background .5s; }
.ta:hover .ta-line { width: 48px; background: #7B1E2B; }
.ta h3 { margin-bottom: 12px; }

/* ---------- Tools bento ---------- */
.tools-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .tools-grid { grid-template-columns: repeat(6, 1fr); } }
.tool {
    background: #FFFFFF; border: 1px solid rgba(201,169,97,0.25);
    padding: 36px; position: relative;
    transition: transform .5s, box-shadow .5s;
}
.tool:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -20px rgba(123,30,43,0.15); }
.tool-num {
    position: absolute; top: 24px; right: 28px;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    color: rgba(201,169,97,0.4); font-size: 1.25rem;
}
.tool h3 { padding-right: 40px; margin-bottom: 12px; }
.tool-underline { display: block; margin-top: 24px; width: 32px; height: 1px; background: #C9A961; transition: width .5s; }
.tool:hover .tool-underline { width: 64px; }
@media (min-width: 768px) {
    .tools-grid .span-3 { grid-column: span 3; }
    .tools-grid .span-2 { grid-column: span 2; }
}

/* ---------- Bonus / The Playbook (3D Book) ---------- */
.bonus-section { position: relative; }
.bonus-glow {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(circle at 70% 30%, rgba(201,169,97,0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(123,30,43,0.2) 0%, transparent 50%);
    opacity: .8;
}
.bonus-grid {
    display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center;
    position: relative; z-index: 1;
}
@media (min-width: 1024px) { .bonus-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.book-3d { perspective: 1500px; display: flex; justify-content: center; }
.book-3d-inner {
    transform-style: preserve-3d;
    transform: rotateY(-28deg) rotateX(4deg);
    transition: transform .8s cubic-bezier(0.16,1,0.3,1);
}
.book-3d:hover .book-3d-inner { transform: rotateY(-18deg) rotateX(2deg); }
.book-cover {
    position: relative;
    width: 280px; height: 380px;
    background: linear-gradient(135deg, #7B1E2B 0%, #5F1620 60%, #3d0d14 100%);
    box-shadow:
        0 30px 60px -10px rgba(0,0,0,0.5),
        0 18px 36px -18px rgba(0,0,0,0.4),
        inset 6px 0 18px rgba(0,0,0,0.4);
    border-radius: 2px 6px 6px 2px;
}
.book-cover::before {
    content: ''; position: absolute; left: 0; top: 12px; bottom: 12px; width: 14px;
    background: linear-gradient(90deg, rgba(0,0,0,0.5), rgba(0,0,0,0));
}
.book-cover::after {
    content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 22px;
    background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(0,0,0,0.3));
    transform: translateX(100%) skewY(45deg) translateY(-11px);
    transform-origin: left;
}
.book-pages {
    position: absolute; right: -10px; top: 4px; bottom: 4px; width: 10px;
    background: repeating-linear-gradient(to bottom, #f7f0df 0, #f7f0df 2px, #d9cdb0 2px, #d9cdb0 3px);
    transform: skewY(45deg) translateY(-5px);
    transform-origin: left;
}
.book-inner {
    position: absolute; inset: 0; padding: 32px;
    display: flex; flex-direction: column; justify-content: space-between; align-items: center;
    text-align: center;
}
.book-rule { display: block; width: 40px; height: 1px; background: #C9A961; margin: 8px auto 16px; }
.book-brand { text-transform: uppercase; letter-spacing: 0.32em; font-size: 9px; color: rgba(201,169,97,0.9); }
.book-the { font-family: 'Cormorant Garamond', serif; color: #E8D9B0; font-style: italic; font-size: 2rem; font-weight: 400; margin-bottom: 12px; }
.book-title { font-family: 'Cormorant Garamond', serif; color: #C9A961; font-size: 3rem; font-weight: 600; letter-spacing: -0.02em; line-height: .95; margin-bottom: 20px; }
.book-divider { width: 64px; height: 1px; background: rgba(201,169,97,0.6); margin: 0 auto 20px; }
.book-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; color: rgba(232,217,176,0.9); font-size: 1.05rem; line-height: 1.3; }
.book-emblem {
    width: 24px; height: 24px; border: 1px solid rgba(201,169,97,0.7);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-style: italic; color: #C9A961; font-size: 12px;
    margin-bottom: 12px;
}
.bonus-copy .h2 { max-width: 560px; }
.bonus-copy .lead { color: rgba(255,255,255,0.75); max-width: 500px; }
.checklist { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; align-items: baseline; gap: 16px; color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 300; }
.cl-mark { font-family: 'Cormorant Garamond', serif; color: #C9A961; font-size: 0.9rem; }

/* ---------- Speakers ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 32px; } }
.speaker-card {
    background: #FBF6EC; border: 1px solid rgba(201,169,97,0.25);
    padding: 32px; display: flex; align-items: center; gap: 24px;
    transition: box-shadow .5s;
}
.speaker-card:hover { box-shadow: 0 20px 40px -15px rgba(123,30,43,0.15); }
.speaker-photo { position: relative; flex-shrink: 0; }
.speaker-photo > img,
.speaker-photo > .initials-fallback {
    width: 88px; height: 88px; border-radius: 50%;
    border: 2px solid #C9A961; background: #7B1E2B;
    object-fit: cover; overflow: hidden;
}
.initials-fallback {
    display: none; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; color: #FFFFFF; font-size: 1.6rem;
}
.speaker-badge {
    position: absolute; bottom: -4px; right: -4px;
    width: 24px; height: 24px; background: #C9A961; color: #1A1A1A;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 12px;
}
.speaker-meta .role { color: #7B1E2B; text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; font-weight: 500; margin-top: 8px; }
.speaker-meta .org { color: #4A4545; font-size: 0.9rem; font-weight: 300; margin-top: 4px; }

/* ---------- Who For ---------- */
.whofor-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .whofor-grid { grid-template-columns: 5fr 7fr; gap: 64px; } }
.audience-list { border-top: 1px solid rgba(201,169,97,0.3); border-bottom: 1px solid rgba(201,169,97,0.3); }
.audience-list li {
    display: flex; align-items: center; gap: 24px; padding: 20px 0;
    border-bottom: 1px solid rgba(201,169,97,0.3);
    transition: padding-left .3s;
}
.audience-list li:last-child { border-bottom: 0; }
.audience-list li:hover { padding-left: 12px; }
.al-num { font-family: 'Cormorant Garamond', serif; font-style: italic; color: #C9A961; font-size: 0.9rem; width: 24px; flex-shrink: 0; }

/* ---------- Pricing ---------- */
.pricing-card {
    position: relative;
    background: #FBF6EC;
    border: 1px solid rgba(201,169,97,0.3);
    padding: 40px 32px;
    box-shadow: 0 40px 80px -30px rgba(123,30,43,0.18);
}
@media (min-width: 640px) { .pricing-card { padding: 56px; } }
.pc-corner { position: absolute; width: 48px; height: 1px; background: #7B1E2B; }
.pc-corner.tl { top: 0; left: 0; }
.pc-corner.tr { top: 0; right: 0; }
.pc-corner.bl { bottom: 0; left: 0; }
.pc-corner.br { bottom: 0; right: 0; }
.pc-corner::after { content: ''; position: absolute; width: 1px; height: 48px; background: #7B1E2B; }
.pc-corner.tl::after { top: 0; left: 0; }
.pc-corner.tr::after { top: 0; right: 0; }
.pc-corner.bl::after { bottom: 0; left: 0; }
.pc-corner.br::after { bottom: 0; right: 0; }

.pricing-details {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 16px;
    text-align: center; margin-bottom: 40px;
}
@media (min-width: 640px) { .pricing-details { grid-template-columns: repeat(4, 1fr); } }
.pd-label { display: block; text-transform: uppercase; letter-spacing: 0.28em; font-size: 10px; color: #7B1E2B; font-weight: 500; margin-bottom: 8px; }
.pd-value { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; color: #1A1A1A; font-weight: 500; line-height: 1; }
@media (min-width: 640px) { .pd-value { font-size: 2rem; } }
.pd-sub { display: block; color: #4A4545; font-size: 0.8rem; margin-top: 8px; font-weight: 300; }

.pricing-divider {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    text-transform: uppercase; letter-spacing: 0.3em; font-size: 11px;
    color: #7B1E2B; font-weight: 500; margin-bottom: 32px;
}
.pricing-divider .rule { width: 32px; height: 1px; background: #C9A961; }

.razorpay-wrapper {
    display: flex; justify-content: center; align-items: center;
    width: 100%; min-height: 100px;
    background: #FFFFFF; border: 1px solid rgba(201,169,97,0.4);
    padding: 32px 16px;
}
.razorpay-wrapper form { margin: 0; }

.pc-note { text-align: center; color: rgba(74,69,69,0.8); font-size: 0.8rem; font-weight: 300; margin-top: 24px; letter-spacing: 0.02em; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid rgba(201,169,97,0.3); }
.faq-item { border-bottom: 1px solid rgba(201,169,97,0.3); }
.faq-trigger {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding: 24px 0;
    text-align: left; color: #1A1A1A;
    font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500;
    background: none; border: 0;
    gap: 24px;
}
@media (min-width: 640px) { .faq-trigger { font-size: 1.35rem; } }
.faq-trigger:hover { color: #7B1E2B; }
.faq-plus {
    font-family: 'Outfit', sans-serif;
    font-weight: 300; font-size: 1.6rem; color: #7B1E2B; line-height: 1;
    transition: transform .35s cubic-bezier(0.16,1,0.3,1);
    display: inline-block;
    flex-shrink: 0;
}
.faq-trigger[aria-expanded="true"] .faq-plus { transform: rotate(45deg); }
.faq-content {
    max-height: 0; overflow: hidden;
    transition: max-height .5s cubic-bezier(0.16,1,0.3,1), padding .3s;
}
.faq-content p {
    color: #4A4545; font-size: 1rem; line-height: 1.65; font-weight: 300;
    padding-left: 40px;
}
.faq-item.open .faq-content { padding-bottom: 24px; }

/* ---------- Final CTA ---------- */
.final-cta { position: relative; }
.final-glow {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(201,169,97,0.18) 0%, transparent 60%);
    opacity: 0.8;
}
.final-cta .h1 { margin: 32px 0 40px; }
.final-quote { max-width: 520px; margin: 0 auto 48px; }
.final-note { margin-top: 32px; text-transform: uppercase; letter-spacing: 0.28em; font-size: 11px; color: rgba(255,255,255,0.4); }

/* ---------- Footer ---------- */
.site-footer { background: #5F1620; color: #F5EFE6; padding: 72px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-logo-wrap { display: inline-block; background: #F5EFE6; padding: 12px; margin-bottom: 20px; }
.footer-logo { height: 80px; width: auto; }
.footer-desc { color: rgba(245,239,230,0.65); font-size: 0.9rem; font-weight: 300; max-width: 300px; line-height: 1.55; }
.footer-center { text-align: left; }
@media (min-width: 640px) { .footer-center { text-align: center; } }
.footer-label { text-transform: uppercase; letter-spacing: 0.28em; font-size: 10px; color: #C9A961; margin-bottom: 16px; font-weight: 500; }
.footer-center .quote-1 { font-size: 1.5rem; margin-bottom: 8px; }
.footer-center .quote-2 { font-size: 1.05rem; }
.footer-links { text-align: left; }
@media (min-width: 640px) { .footer-links { text-align: right; } }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(245,239,230,0.8); font-size: 0.9rem; font-weight: 300; transition: color .3s; }
.footer-links a:hover { color: #C9A961; }
.footer-bottom {
    margin-top: 56px; padding-top: 32px;
    border-top: 1px solid rgba(201,169,97,0.25);
    display: flex; flex-direction: column; gap: 16px;
    justify-content: space-between; align-items: flex-start;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-bottom p { color: rgba(245,239,230,0.55); font-size: 0.75rem; font-weight: 300; }
.footer-tag { text-transform: uppercase; letter-spacing: 0.28em; color: rgba(201,169,97,0.8) !important; font-weight: 500 !important; }
