﻿:root { --bg-color: #F7EFE3; --primary: #E4572E; --ink: #2B1D16; --moss: #5B7553; --deep-blue: #23425F; --rule: rgba(43, 29, 22, 0.2); }
body { background-color: var(--bg-color); color: var(--ink); font-family: 'Lora', 'Noto Serif SC', serif; font-size: 17px; line-height: 1.8; margin: 0; padding: 0; position: relative; }
body::before { content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); }
h1, h2, h3, h4, .brand { font-family: 'Fraunces', 'Noto Serif SC', serif; color: var(--ink); font-weight: 700; }
a { color: var(--primary); text-decoration: none; position: relative; }
p a, li a, .footer-links a { background-image: linear-gradient(var(--primary), var(--primary)); background-position: 0% 100%; background-repeat: no-repeat; background-size: 100% 1px; transition: background-size 0.3s; }
p a:hover, li a:hover, .footer-links a:hover { background-size: 100% 2px; }
.container { max-width: 900px; margin: 0 auto; padding: 0 3rem; }
header { padding: 2rem 0; border-bottom: 1px solid var(--rule); margin-bottom: 3rem; }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo-svg { height: 60px; width: auto; }
nav { display: flex; gap: 2.5rem; }
nav a { color: var(--ink); font-family: 'Fraunces', 'Noto Serif SC', serif; font-weight: 600; text-transform: lowercase; letter-spacing: 0.02em; background: none !important; }
nav a:hover { color: var(--primary); }
.hero { text-align: center; padding: 2rem 0 6rem; border-bottom: 1px solid var(--rule); }
.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 1.5rem; color: var(--ink); }
.hero h1 em { color: var(--primary); font-style: italic; }
.hero p.lead { font-size: 1.25rem; max-width: 600px; margin: 0 auto 3.5rem; color: var(--ink); }
.btn-group { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.btn { display: inline-block; padding: 0.8rem 2rem; font-family: 'Fraunces', 'Noto Serif SC', serif; font-weight: 600; font-size: 1.1rem; border: 1px solid var(--ink); background: transparent; color: var(--ink); transition: all 0.2s ease; background-image: none !important; }
.btn-primary { background-color: var(--primary); color: var(--bg-color); border-color: var(--primary); }
.btn:hover { transform: translateY(-2px); box-shadow: 4px 4px 0 var(--ink); }
.btn-primary:hover { box-shadow: 4px 4px 0 var(--ink); }
section { padding: 5rem 0; border-bottom: 1px solid var(--rule); }
section h2 { font-size: 2.5rem; margin-bottom: 4rem; text-align: center; }
.grid-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 4rem; }
.feature-item { border-top: 1px solid var(--rule); padding-top: 2rem; }
.feature-item h3 { font-size: 1.5rem; margin: 1.5rem 0 1rem; color: var(--primary); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); border: 1px solid var(--rule); }
.price-col { padding: 3rem 2rem; border-right: 1px solid var(--rule); text-align: center; display: flex; flex-direction: column; }
.price-col:last-child { border-right: none; }
.price-col h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.price-col .price { font-family: 'Fraunces', serif; font-size: 3.5rem; color: var(--primary); margin: 1.5rem 0; font-weight: 700; line-height: 1; }
.price-col .price span { font-size: 1rem; color: var(--ink); font-family: 'Lora', 'Noto Serif SC', serif; font-weight: 400; }
.price-col ul { list-style: none; padding: 0; margin: 0 0 2.5rem 0; flex-grow: 1; }
.price-col ul li { padding: 0.8rem 0; border-bottom: 1px dashed rgba(43, 29, 22, 0.15); font-size: 0.95rem; }
.faq-list { max-width: 650px; margin: 0 auto; }
.faq-item { margin-bottom: 2.5rem; }
.faq-item h4 { font-size: 1.3rem; margin-bottom: 0.8rem; }
footer { padding: 5rem 0; text-align: center; border-bottom: none; }
.footer-links { display: flex; justify-content: center; gap: 2.5rem; margin-bottom: 2rem; }
.footer-links a { color: var(--ink); }
.footer-links a:hover { color: var(--primary); }
@media (max-width: 768px) {
    .header-content { flex-direction: column; gap: 2rem; } nav { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
    .hero h1 { font-size: 2.5rem; } .pricing-grid { grid-template-columns: 1fr; }
    .price-col { border-right: none; border-bottom: 1px solid var(--rule); } .price-col:last-child { border-bottom: none; }
    .container { padding: 0 2rem; } .btn { width: 100%; }
}
/* Content Article Styles */
.article-header { text-align: center; margin-bottom: 4rem; padding-bottom: 2rem; border-bottom: 1px solid var(--rule); }
.article-header h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.article-meta { font-size: 0.9rem; color: rgba(43, 29, 22, 0.6); font-family: 'Fraunces', serif; }
.article-content { max-width: 760px; margin: 0 auto; }
.article-content h2 { font-size: 2rem; margin: 3rem 0 1.5rem; text-align: left; border-bottom: none; padding-bottom: 0; }
.article-content h3 { font-size: 1.4rem; margin: 2rem 0 1rem; }
.article-content p { margin-bottom: 1.5rem; font-size: 1.1rem; }
.article-content ul { margin-bottom: 1.5rem; padding-left: 2rem; font-size: 1.1rem; }
.article-content li { margin-bottom: 0.5rem; }
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-color);
    border: 1px solid var(--ink);
    color: var(--ink);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--ink);
    transition: all 0.2s ease;
    z-index: 1000;
}
.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 0 var(--ink);
    color: var(--primary);
}
.next-article-nav {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.next-article-nav span { font-size: 0.85rem; color: var(--moss); font-family: 'Fraunces', serif; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.next-article-nav a { font-size: 1.3rem; font-weight: bold; color: var(--ink); background: none !important; transition: color 0.3s; text-decoration: none; }
.next-article-nav a:hover { color: var(--primary); text-decoration: underline; }
