:root {
    --walnut: #3d2817;
    --walnut-dark: #2c1810;
    --terracotta: #c77d5c;
    --terracotta-deep: #a85a3b;
    --cream: #faf6f0;
    --cream-warm: #f5efe6;
    --gold: #d4a574;
    --text: #2c1810;
    --text-muted: #6b5544;
    --border: #e8ddd0;
    --shadow-sm: 0 4px 12px rgba(61, 40, 23, 0.08);
    --shadow-md: 0 12px 32px rgba(61, 40, 23, 0.12);
    --shadow-lg: 0 24px 64px rgba(61, 40, 23, 0.16);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

/* Background textures */
.bg-grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.3;
    background-image: radial-gradient(rgba(61,40,23,0.08) 1px, transparent 1px);
    background-size: 4px 4px;
    z-index: 0;
}

.bg-blur {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    animation: drift 30s infinite ease-in-out;
}

.bg-blur-1 {
    width: 500px;
    height: 500px;
    background: var(--terracotta);
    top: -200px;
    right: -100px;
    opacity: 0.2;
}

.bg-blur-2 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    bottom: 10%;
    left: -150px;
    animation-delay: -15s;
}

@keyframes drift {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(40px, 30px) scale(1.1); }
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--walnut);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.01em;
}

a { color: var(--terracotta-deep); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--walnut); }

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s;
    background: rgba(250, 246, 240, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 12px 0;
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--walnut);
    font-family: var(--font-serif);
    font-size: 1.25rem;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--walnut);
    color: var(--cream);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.4s;
}

.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }

.logo-text em {
    font-style: italic;
    color: var(--terracotta-deep);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s;
}

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

.nav-cta {
    padding: 10px 22px;
    background: var(--walnut);
    color: var(--cream) !important;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--terracotta-deep);
    color: var(--cream) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--walnut);
    transition: all 0.3s;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--walnut);
    color: var(--cream) !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(61,40,23,0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary span, .btn-primary { position: relative; z-index: 1; }

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(61,40,23,0.3);
    color: var(--cream) !important;
}

.btn-primary:hover::before { opacity: 1; }

.btn-outline {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: var(--walnut) !important;
    border: 1.5px solid var(--walnut);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--walnut);
    color: var(--cream) !important;
}

.btn-full { width: 100%; text-align: center; }

/* HERO */
.hero {
    padding: 140px 0 80px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(199, 125, 92, 0.12);
    border: 1px solid rgba(199, 125, 92, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--terracotta-deep);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(199,125,92,0.5); }
    50% { box-shadow: 0 0 0 8px rgba(199,125,92,0); }
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 600;
    animation: fadeInUp 0.9s ease;
}

.hero-intro {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 560px;
    animation: fadeInUp 1s ease;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 1.1s ease;
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-icon {
    color: var(--terracotta);
    font-size: 1.1rem;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
}

/* Shutter Mockup */
.hero-visual {
    position: relative;
    height: 540px;
    animation: fadeIn 1.2s ease;
}

.shutter-mockup {
    position: relative;
    width: 100%;
    height: 100%;
}

.shutter-frame {
    position: absolute;
    inset: 40px;
    background: linear-gradient(145deg, #4a3020, #2c1810);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 
        0 30px 80px rgba(61,40,23,0.35),
        inset 0 2px 4px rgba(255,255,255,0.1);
    overflow: hidden;
}

.shutter-louver {
    flex: 1;
    background: linear-gradient(180deg, #6b4430, #3d2817);
    border-radius: 2px;
    transform: rotateX(25deg);
    transform-origin: top;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 2px 4px rgba(0,0,0,0.3);
    animation: louverSway 4s ease-in-out infinite;
}

.shutter-louver:nth-child(2) { animation-delay: 0.1s; }
.shutter-louver:nth-child(3) { animation-delay: 0.2s; }
.shutter-louver:nth-child(4) { animation-delay: 0.3s; }
.shutter-louver:nth-child(5) { animation-delay: 0.4s; }
.shutter-louver:nth-child(6) { animation-delay: 0.5s; }
.shutter-louver:nth-child(7) { animation-delay: 0.6s; }
.shutter-louver:nth-child(8) { animation-delay: 0.7s; }

@keyframes louverSway {
    0%, 100% { transform: rotateX(25deg); }
    50% { transform: rotateX(40deg); }
}

.light-ray {
    position: absolute;
    inset: 24px;
    background: linear-gradient(135deg, 
        transparent 30%, 
        rgba(212, 165, 116, 0.3) 45%, 
        rgba(212, 165, 116, 0.15) 55%,
        transparent 70%);
    pointer-events: none;
    animation: lightShift 8s ease-in-out infinite;
}

@keyframes lightShift {
    0%, 100% { transform: translateX(-10%); opacity: 0.6; }
    50% { transform: translateX(10%); opacity: 0.9; }
}

.floating-card {
    position: absolute;
    background: var(--cream);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatCard 4s ease-in-out infinite;
    border: 1px solid var(--border);
}

.floating-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--walnut);
}

.floating-card small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.fc-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--cream);
    font-size: 1.4rem;
}

.card-1 {
    top: 30px;
    right: 10px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 60px;
    left: 0;
    animation-delay: -2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* STATS BAR */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    background: var(--cream-warm);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.stat { text-align: center; }

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--walnut);
    line-height: 1;
}

.stat-number::after { content: '+'; color: var(--terracotta); font-size: 1.5rem; }

.stat:last-child .stat-number::after { content: '%'; }

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* SECTIONS */
.section { padding: 100px 0; position: relative; }
.section-warm { background: var(--cream-warm); }

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--terracotta-deep);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1.5px;
    background: var(--terracotta);
}

.section-head h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
}

.section-head p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* BENTO GRID */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 24px;
}

.bento-card {
    background: var(--cream);
    padding: 36px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.bento-card:hover::before { transform: scaleX(1); }

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--terracotta);
}

.bento-large { grid-column: span 2; grid-row: span 2; padding: 48px; }
.bento-wide { grid-column: span 2; }

.bento-icon {
    width: 56px;
    height: 56px;
    background: rgba(199, 125, 92, 0.12);
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.bento-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.bento-features {
    list-style: none;
    margin-bottom: 20px;
}

.bento-features li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.bento-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-weight: 700;
}

.bento-link {
    font-weight: 600;
    color: var(--walnut);
    font-size: 0.9rem;
    align-self: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
}

.bento-link:hover { border-bottom-color: var(--terracotta); color: var(--terracotta-deep); }

/* TIMELINE */
.timeline-h {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    position: relative;
    margin-top: 40px;
}

.t-step {
    background: var(--cream);
    padding: 30px 22px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

.t-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--terracotta);
}

.t-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--terracotta);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 12px;
}

.t-step:hover .t-num { opacity: 1; }

.t-step h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.t-step p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.t-connector {
    position: absolute;
    top: 60px;
    width: 12px;
    height: 2px;
    background: var(--terracotta);
    opacity: 0.3;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.css-art {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
}

.art-1 {
    background: 
        repeating-linear-gradient(180deg, 
            #4a3020 0px, #4a3020 30px, 
            #3d2817 30px, #3d2817 32px,
            #6b4430 32px, #6b4430 60px);
}

.art-2 {
    background: 
        linear-gradient(180deg, #faf6f0 0%, #e8ddd0 100%),
        repeating-linear-gradient(45deg, transparent 0 20px, rgba(199,125,92,0.1) 20px 22px);
}

.art-3 {
    background: 
        radial-gradient(circle at 30% 30%, #d4a574, transparent 50%),
        repeating-linear-gradient(180deg, #5a3d28 0 40px, #3d2817 40px 42px);
}

.art-4 {
    background: 
        linear-gradient(135deg, #f5efe6 0%, #c77d5c 100%);
    position: relative;
}

.art-4::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 2px solid rgba(250,246,240,0.3);
    border-radius: 8px;
}

.gallery-item:hover .css-art { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,24,16,0.9), transparent 60%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--cream);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 8px;
}

.gallery-overlay h4 {
    color: var(--cream);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.gallery-overlay p { font-size: 0.9rem; opacity: 0.85; }

/* ARTICLE */
.article-wrap { max-width: 880px; margin: 0 auto; }

.article-head {
    margin-bottom: 60px;
    text-align: center;
}

.article-head h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin: 20px auto 30px;
    max-width: 760px;
}

.article-byline {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.byline-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--terracotta), var(--walnut));
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--cream);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.2rem;
}

.article-byline strong { display: block; color: var(--walnut); }
.article-byline span { font-size: 0.85rem; color: var(--text-muted); }

.article-body { font-size: 1.05rem; color: #3d2817; }

.article-body h2 {
    font-size: 1.85rem;
    margin: 50px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.article-body h3 {
    font-size: 1.3rem;
    margin: 36px 0 14px;
    color: var(--terracotta-deep);
}

.article-body p { margin-bottom: 20px; }

.article-body a {
    color: var(--terracotta-deep);
    font-weight: 600;
    border-bottom: 1px solid var(--terracotta);
    padding-bottom: 2px;
}

.article-body a:hover { color: var(--walnut); border-color: var(--walnut); }

.drop-cap::first-letter {
    font-family: var(--font-serif);
    font-size: 4rem;
    float: left;
    line-height: 0.9;
    padding: 6px 12px 0 0;
    color: var(--terracotta-deep);
    font-weight: 700;
}

.article-toc {
    background: var(--cream);
    padding: 30px 36px;
    border-radius: 16px;
    border-left: 4px solid var(--terracotta);
    margin: 40px 0;
}

.article-toc strong {
    display: block;
    color: var(--walnut);
    margin-bottom: 12px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.article-toc ul { list-style: none; }

.article-toc li {
    padding: 6px 0;
    font-size: 0.95rem;
}

.article-toc a {
    border-bottom: none;
    color: var(--text);
    font-weight: 500;
}

.article-toc a:hover { color: var(--terracotta-deep); }

.pullquote {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--walnut);
    padding: 40px 30px;
    margin: 40px 0;
    border-left: 4px solid var(--terracotta);
    background: var(--cream);
    border-radius: 0 16px 16px 0;
    position: relative;
}

.pullquote cite {
    display: block;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--terracotta-deep);
    margin-top: 16px;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.info-card {
    padding: 24px 28px;
    border-radius: 16px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-card.tip {
    background: rgba(212, 165, 116, 0.15);
    border: 1px solid rgba(212, 165, 116, 0.4);
}

.info-card.warning {
    background: rgba(199, 125, 92, 0.12);
    border: 1px solid rgba(199, 125, 92, 0.4);
}

.ic-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.ic-body strong {
    display: block;
    color: var(--walnut);
    margin-bottom: 6px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.ic-body p { margin: 0; font-size: 0.95rem; }

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.comp-card {
    padding: 28px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.comp-card.good { background: rgba(212,165,116,0.1); border-color: rgba(212,165,116,0.4); }
.comp-card.bad { background: rgba(107,85,68,0.06); }

.comp-card h4 {
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.comp-card ul { list-style: none; }
.comp-card li { padding: 6px 0; font-size: 0.95rem; color: var(--text-muted); }

.price-table {
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden;
    margin: 30px 0;
    border: 1px solid var(--border);
}

.price-header, .price-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
    padding: 16px 24px;
    gap: 16px;
    align-items: center;
}

.price-header {
    background: var(--walnut);
    color: var(--cream);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-row {
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
}

.price-row:nth-child(even) { background: rgba(245,239,230,0.5); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--cream);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--terracotta);
}

.f-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 8px;
}

.feature-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); }

/* FAQ */
.faq-wrap { margin-top: 30px; }

.faq-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active { border-color: var(--terracotta); }

.faq-q {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--walnut);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq-q span {
    color: var(--terracotta);
    font-size: 1.5rem;
    transition: transform 0.3s;
    font-family: var(--font-sans);
}

.faq-item.active .faq-q span { transform: rotate(45deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 24px;
}

.faq-item.active .faq-a {
    max-height: 400px;
    padding: 0 24px 24px;
}

.faq-a p { color: var(--text-muted); font-size: 0.95rem; }

.article-final-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--walnut), var(--terracotta-deep));
    border-radius: 20px;
    color: var(--cream);
}

.article-final-cta h3 {
    color: var(--cream);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.article-final-cta p { margin-bottom: 24px; opacity: 0.9; }

.article-final-cta .btn-primary {
    background: var(--cream);
    color: var(--walnut) !important;
}

.article-final-cta .btn-primary:hover { background: var(--gold); }

/* TESTIMONIALS */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--cream);
    padding: 36px 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--terracotta);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--terracotta);
}

.t-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.t-quote {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.6;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.t-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--terracotta), var(--walnut));
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--cream);
    font-weight: 700;
    font-family: var(--font-serif);
}

.t-author strong {
    display: block;
    color: var(--walnut);
    font-size: 0.95rem;
}

.t-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    background: var(--walnut);
    color: var(--cream);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.info-block {
    padding: 18px 0;
    border-bottom: 1px solid rgba(250,246,240,0.12);
}

.info-block:last-of-type { border-bottom: none; margin-bottom: 20px; }

.info-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 6px;
}

.info-value {
    color: var(--cream);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
}

.info-value a {
    color: var(--cream);
    border-bottom: 1px solid rgba(250,246,240,0.3);
}

.info-value a:hover { border-bottom-color: var(--gold); }

.contact-info .btn-primary {
    background: var(--gold);
    color: var(--walnut) !important;
}

.contact-form {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--walnut);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--cream-warm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    background: var(--cream);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* FOOTER */
.footer {
    background: var(--walnut-dark);
    color: var(--cream);
    padding: 70px 0 20px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-logo .logo-mark {
    background: var(--gold);
    color: var(--walnut-dark);
}

.footer-col p {
    color: rgba(250,246,240,0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-col h4 {
    color: var(--cream);
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
    color: rgba(250,246,240,0.7);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-col a:hover { color: var(--gold); padding-left: 4px; }

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(250,246,240,0.1);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--cream);
    padding-left: 0;
    transition: all 0.3s;
}

.social-row a:hover {
    background: var(--gold);
    color: var(--walnut-dark);
    transform: translateY(-3px);
    padding-left: 0;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(250,246,240,0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(250,246,240,0.5);
}

/* ANIMATIONS */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 968px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { height: 400px; order: -1; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-large, .bento-wide { grid-column: span 2; grid-row: auto; }
    .timeline-h { grid-template-columns: 1fr; }
    .t-connector { display: none; }
    .testimonials { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .price-header, .price-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; font-size: 0.8rem; }
}

@media (max-width: 640px) {
    .nav-links { 
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-200%);
        transition: transform 0.4s;
        box-shadow: var(--shadow-md);
    }
    .nav-links.open { transform: translateY(0); }
    .menu-toggle { display: flex; }
    .nav-cta { display: none; }
    .hero { padding: 110px 0 60px; }
    .section { padding: 70px 0; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-wide { grid-column: span 1; }
    .stats-bar { grid-template-columns: 1fr 1fr; padding: 30px 20px; }
    .stat-number { font-size: 2.2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-cta { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }
    .price-header, .price-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 20px; }
    .price-header > div, .price-row > div { font-size: 0.9rem; }
    .article-byline { flex-direction: column; }
}