.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #3d1a08;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(30, 10, 4, 0.58);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    width: 90%;
    max-width: 820px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #e8c9a0;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff7ed;
    line-height: 1.7;
    margin: 0 0 20px;
}

.hero-content .hero-desc {
    font-size: 18px;
    font-weight: 400;
    color: #e8c9a0;
    line-height: 1.7;
    margin: 0 0 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero-scroll-hint span {
    font-size: 12px;
    font-weight: 400;
    color: #b5935a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #b5935a;
    border-bottom: 2px solid #b5935a;
    transform: rotate(45deg);
    animation: bounceArrow 1.4s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(5px); }
}

.intro-strip {
    background-color: #3d1a08;
    padding: 20px 0;
}

.intro-strip-inner {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.intro-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e8c9a0;
    font-size: 14px;
    font-weight: 400;
}

.intro-strip-item svg {
    flex-shrink: 0;
}

.section-featured {
    padding: 72px 0 56px;
    background-color: #fff7ed;
}

.section-header {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto 40px;
    padding: 0 24px;
}

.section-header .section-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7c2d12;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #2a1005;
    line-height: 1.7;
    margin: 0;
}

.featured-grid {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
}

.featured-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: #3d1a08;
}

.featured-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.featured-main-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(30, 10, 4, 0.52);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.featured-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e8c9a0;
    margin-bottom: 10px;
}

.featured-main-overlay h3 {
    margin: 0 0 12px;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.7;
}

.featured-main-overlay h3 a {
    color: #fff7ed;
    text-decoration: none;
    transition: color 0.2s;
}

.featured-main-overlay h3 a:hover,
.featured-main-overlay h3 a:focus {
    color: #e8c9a0;
    text-decoration: none;
    outline: none;
}

.featured-meta {
    font-size: 13px;
    font-weight: 400;
    color: #b5935a;
}

.featured-secondary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-secondary-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    background-color: #fdf3e3;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8c9a0;
    transition: box-shadow 0.2s;
}

.featured-secondary-card:hover {
    box-shadow: 0 4px 12px rgba(124, 45, 18, 0.12);
}

.featured-secondary-card img {
    width: 100px;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-secondary-body {
    padding: 14px 14px 14px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-secondary-body .featured-cat {
    color: #7c2d12;
}

.featured-secondary-body h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.7;
}

.featured-secondary-body h3 a {
    color: #2a1005;
    text-decoration: none;
    transition: color 0.2s;
}

.featured-secondary-body h3 a:hover,
.featured-secondary-body h3 a:focus {
    color: #7c2d12;
    text-decoration: none;
    outline: none;
}

.featured-secondary-body .featured-meta {
    color: #7a4f2e;
    font-size: 12px;
}

.section-categories {
    padding: 56px 0;
    background-color: #fdf3e3;
    border-top: 2px solid #e8c9a0;
    border-bottom: 2px solid #e8c9a0;
}

.categories-grid {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.category-card {
    background-color: #fff7ed;
    border: 1px solid #e8c9a0;
    border-radius: 8px;
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    transition: box-shadow 0.2s, border-color 0.2s;
    display: block;
}

.category-card:hover,
.category-card:focus {
    box-shadow: 0 4px 16px rgba(124, 45, 18, 0.15);
    border-color: #7c2d12;
    text-decoration: none;
    outline: none;
}

.category-card svg {
    display: block;
    margin: 0 auto 12px;
}

.category-card-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #2a1005;
    margin-bottom: 4px;
}

.category-card-desc {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #7a4f2e;
    line-height: 1.7;
}

.section-articles {
    padding: 72px 0;
    background-color: #fff7ed;
}

.articles-grid {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.article-card {
    background-color: #fdf3e3;
    border: 1px solid #e8c9a0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.article-card:hover {
    box-shadow: 0 4px 16px rgba(124, 45, 18, 0.12);
}

.article-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.article-card-body {
    padding: 20px;
}

.article-card-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0f766e;
    display: block;
    margin-bottom: 8px;
}

.article-card-body h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.7;
}

.article-card-body h3 a {
    color: #2a1005;
    text-decoration: none;
    transition: color 0.2s;
}

.article-card-body h3 a:hover,
.article-card-body h3 a:focus {
    color: #7c2d12;
    text-decoration: none;
    outline: none;
}

.article-card-excerpt {
    font-size: 14px;
    font-weight: 400;
    color: #7a4f2e;
    line-height: 1.7;
    margin: 0 0 16px;
}

.article-card-meta {
    font-size: 12px;
    font-weight: 400;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-card-meta svg {
    flex-shrink: 0;
}

.section-planner {
    padding: 64px 0;
    background-color: #0f766e;
}

.planner-inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.planner-inner .section-label {
    color: #a7f3d0;
}

.planner-inner h2 {
    color: #fff;
    font-size: 1.9rem;
    margin-bottom: 8px;
}

.planner-intro {
    font-size: 16px;
    font-weight: 400;
    color: #ccfbf1;
    line-height: 1.7;
    margin: 0 0 36px;
}

.planner-form {
    background-color: #fff7ed;
    border-radius: 8px;
    padding: 32px;
}

.planner-form-title {
    font-size: 16px;
    font-weight: 700;
    color: #2a1005;
    margin: 0 0 24px;
}

.planner-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.planner-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.planner-field label {
    font-size: 14px;
    font-weight: 700;
    color: #3d1a08;
}

.planner-field select,
.planner-field input[type="range"] {
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 14px;
    color: #2a1005;
    background-color: #fff7ed;
    border: 1px solid #e8c9a0;
    border-radius: 6px;
    padding: 10px 12px;
    width: 100%;
    appearance: none;
}

.planner-field input[type="range"] {
    padding: 4px 0;
    cursor: pointer;
    accent-color: #7c2d12;
}

.range-value {
    font-size: 13px;
    font-weight: 700;
    color: #7c2d12;
}

.planner-result {
    margin-top: 28px;
    background-color: #3d1a08;
    border-radius: 8px;
    padding: 24px;
}

.planner-result-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #b5935a;
    margin: 0 0 16px;
    display: block;
}

.planner-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.planner-item {
    background-color: rgba(255, 247, 237, 0.06);
    border: 1px solid rgba(229, 186, 139, 0.2);
    border-radius: 6px;
    padding: 14px;
}

.planner-item-label {
    font-size: 12px;
    font-weight: 400;
    color: #b5935a;
    display: block;
    margin-bottom: 4px;
}

.planner-item-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff7ed;
    display: block;
}

.planner-item-note {
    font-size: 11px;
    font-weight: 400;
    color: #7a4f2e;
    display: block;
    margin-top: 3px;
}

.section-timeline {
    padding: 72px 0;
    background-color: #fdf3e3;
    border-top: 2px solid #e8c9a0;
}

.timeline-inner {
    width: 90%;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.timeline-intro {
    font-size: 16px;
    font-weight: 400;
    color: #7a4f2e;
    line-height: 1.7;
    margin: 0 0 48px;
}

.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e8c9a0;
}

.timeline-item {
    position: relative;
    padding: 0 0 36px 28px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #7c2d12;
    border: 2px solid #fff7ed;
    box-shadow: 0 0 0 3px #e8c9a0;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-month {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7c2d12;
    display: block;
    margin-bottom: 4px;
}

.timeline-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2a1005;
    margin: 0 0 6px;
    line-height: 1.7;
}

.timeline-item p {
    font-size: 15px;
    color: #7a4f2e;
    margin: 0;
    line-height: 1.7;
}

.timeline-type {
    font-size: 12px;
    font-weight: 400;
    color: #aaa;
    margin-top: 4px;
    display: block;
}

.section-comparison {
    padding: 72px 0;
    background-color: #fff7ed;
}

.comparison-inner {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.comparison-intro {
    font-size: 16px;
    font-weight: 400;
    color: #7a4f2e;
    line-height: 1.7;
    margin: 8px 0 36px;
}

.comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    border: 1px solid #e8c9a0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background-color: #fdf3e3;
}

.comparison-table th {
    background-color: #7c2d12;
    color: #fff7ed;
    padding: 14px 18px;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
}

.comparison-table th:first-child {
    background-color: #5c1f09;
}

.comparison-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #e8c9a0;
    color: #2a1005;
    vertical-align: middle;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
    background-color: #fff7ed;
}

.comparison-table .check {
    color: #0f766e;
    font-weight: 700;
}

.comparison-table .price-note {
    font-size: 13px;
    color: #7a4f2e;
}

.section-newsletter {
    padding: 72px 0;
    background-color: #7c2d12;
}

.newsletter-inner {
    width: 90%;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.newsletter-inner svg {
    display: block;
    margin: 0 auto 20px;
}

.newsletter-inner h2 {
    color: #fff7ed;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.newsletter-inner p {
    font-size: 16px;
    color: #e8c9a0;
    line-height: 1.7;
    margin: 0 0 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.newsletter-form input[type="email"] {
    flex: 1;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 16px;
    padding: 13px 18px;
    border: none;
    border-radius: 6px;
    background-color: #fff7ed;
    color: #2a1005;
    min-width: 0;
}

.newsletter-form input[type="email"]:focus {
    outline: 2px solid #e8c9a0;
    outline-offset: 2px;
}

.newsletter-form button {
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    background-color: #0f766e;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.newsletter-form button:hover,
.newsletter-form button:focus {
    background-color: #0a5c56;
    outline: 2px solid #e8c9a0;
    outline-offset: 2px;
}

.newsletter-notice {
    font-size: 13px;
    color: #b5935a;
    margin: 16px 0 0;
}

.newsletter-msg {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 700;
    color: #e8c9a0;
    min-height: 20px;
}

@media (max-width: 900px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-main-img {
        height: 320px;
    }

    .featured-secondary {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .featured-secondary-card {
        flex: 1 1 260px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .hero-desc {
        font-size: 16px;
    }

    .intro-strip-inner {
        gap: 20px;
        justify-content: flex-start;
    }

    .featured-main-img {
        height: 260px;
    }

    .featured-secondary {
        flex-direction: column;
    }

    .featured-secondary-card {
        grid-template-columns: 90px 1fr;
    }

    .planner-row {
        grid-template-columns: 1fr;
    }

    .planner-items {
        grid-template-columns: 1fr;
    }

    .planner-form {
        padding: 20px;
    }

    .timeline {
        padding-left: 24px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100svh;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .intro-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .planner-inner h2,
    .newsletter-inner h2 {
        font-size: 1.5rem;
    }
}