/* BASE RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #111111;
    color: #e8e0d0;
    line-height: 1.8;
}

/* SECTIONS */
section {
    max-width: 860px;
    margin: 0 auto;
    padding: 100px 40px;
    border-bottom: 1px solid #222222;
}

/* HOOK */
#hook {
    padding-top: 160px;
    background-image: url('images/hero.jpeg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    max-width: 100%;
}

#hook::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.80) 100%
    );
    z-index: 0;
}

#hook h1,
#hook p {
    position: relative;
    z-index: 1;
}

#hook h1 {
    font-size: 2.4rem;
    font-weight: normal;
    color: #d4c4a8;
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: 720px;
}

#hook p {
    font-size: 1.15rem;
    color: #b0c4b0;
    max-width: 580px;
}

/* HEADINGS */
h2 {
    font-size: 1.3rem;
    font-weight: normal;
    color: #c8b89a;
    margin-bottom: 24px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* PARAGRAPHS */
p {
    font-size: 1rem;
    margin-bottom: 18px;
    color: #c8c0b0;
    max-width: 680px;
}

/* EMAIL FORM */
#signup-form {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

#signup-form input[type="email"] {
    flex: 1;
    min-width: 240px;
    padding: 14px 20px;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    color: #e8e0d0;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    outline: none;
    transition: border-color 0.2s ease;
}

#signup-form input[type="email"]:focus {
    border-color: #7a9a7a;
}

#signup-form input[type="email"]::placeholder {
    color: #555555;
}

#signup-form button {
    padding: 14px 32px;
    background-color: #4a7a5a;
    color: #e8e0d0;
    border: none;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#signup-form button:hover {
    background-color: #5a8a6a;
}

/* FEATURES GRID */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 60px;
    margin-top: 48px;
}

.feature {
    border-top: 1px solid #2a2a2a;
    padding-top: 28px;
}

.feature-icon {
    display: block;
    font-size: 0.75rem;
    color: #4a7a5a;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.feature h3 {
    font-size: 1.05rem;
    font-weight: normal;
    color: #d4c4a8;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.feature p {
    font-size: 0.95rem;
    color: #908880;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

.about-text p {
    max-width: 100%;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 36px;
    border-left: 1px solid #2a2a2a;
    padding-left: 48px;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    color: #d4c4a8;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #666660;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* PRICING */
.pricing-box {
    margin-top: 48px;
    border: 1px solid #2a2a2a;
    padding: 48px;
    background-color: #161616;
}

.pricing-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #222222;
}

.pricing-amount {
    font-size: 3.5rem;
    color: #d4c4a8;
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-period {
    font-size: 0.9rem;
    color: #666660;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-list {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-list li {
    font-size: 0.95rem;
    color: #c8c0b0;
    padding: 12px 0;
    border-bottom: 1px solid #1e1e1e;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.pricing-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #4a7a5a;
}

.pricing-note {
    font-size: 0.9rem;
    color: #666660;
    margin-bottom: 0;
    font-style: italic;
}

/* JOURNAL */
#journal-hero {
    padding-top: 160px;
}

#journal-hero h1 {
    font-size: 2.4rem;
    font-weight: normal;
    color: #d4c4a8;
    margin-bottom: 20px;
}

#journal-list {
    padding-top: 60px;
}

.journal-entry {
    padding: 48px 0;
    border-bottom: 1px solid #1e1e1e;
}

.journal-entry:first-child {
    padding-top: 0;
}

.entry-date {
    display: block;
    font-size: 0.8rem;
    color: #555550;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.journal-entry h2 {
    font-size: 1.3rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 12px;
}

.journal-entry h2 a {
    color: #d4c4a8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.journal-entry h2 a:hover {
    color: #c8b89a;
}

.journal-entry p {
    color: #908880;
    margin-bottom: 16px;
}

.read-more {
    font-size: 0.85rem;
    color: #4a7a5a;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: #5a8a6a;
}

/* FOOTER */
footer {
    background-color: #0a0a0a;
    border-top: 1px solid #1e1e1e;
    padding: 48px 40px;
}

#footer-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#footer-name {
    font-size: 1rem;
    color: #c8b89a;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

#footer-tagline {
    font-size: 0.9rem;
    color: #555550;
    font-style: italic;
}

#footer-copy {
    font-size: 0.8rem;
    color: #3a3a38;
    letter-spacing: 0.04em;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 48px;
    background-color: rgba(10, 10, 10, 0.90);
    backdrop-filter: blur(8px);
    z-index: 100;
    border-bottom: 1px solid #1e1e1e;
}

#logo a {
    color: #c8b89a;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

#logo {
    font-size: 1.2rem;
    color: #c8b89a;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

nav a {
    color: #888880;
    text-decoration: none;
    margin-left: 36px;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #c8b89a;
}
/* ARTICLE */
#article-hero {
    padding-top: 160px;
    padding-bottom: 48px;
    border-bottom: 1px solid #222222;
}

#article-hero h1 {
    font-size: 2rem;
    font-weight: normal;
    color: #d4c4a8;
    line-height: 1.5;
    max-width: 720px;
    margin-top: 16px;
    text-transform: none;
    letter-spacing: 0;
}

#article-body {
    padding-top: 60px;
}

#article-body p {
    max-width: 680px;
    line-height: 1.9;
    margin-bottom: 24px;
    color: #c8c0b0;
}

#article-body h2 {
    margin-top: 48px;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.1rem;
}

#article-footer {
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: none;
}
/* RESPONSIVE */
@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        border-left: none;
        border-top: 1px solid #2a2a2a;
        padding-left: 0;
        padding-top: 36px;
    }

    .pricing-box {
        padding: 32px 24px;
    }

    .pricing-amount {
        font-size: 2.8rem;
    }

    #hook h1 {
        font-size: 1.8rem;
    }

    #journal-hero h1 {
        font-size: 1.8rem;
    }

    header {
        padding: 18px 24px;
    }

    section {
        padding: 70px 24px;
    }

    footer {
        padding: 40px 24px;
    }
}