.home-page {
    --home-forest: #14302e;
    --home-forest-soft: #234945;
    --home-gold: #d8b354;
    --home-cream: #f6f1e8;
    --home-paper: #fffdf9;
    --home-ink: #1a302e;
    --home-muted: #687572;
    overflow: hidden;
    background: var(--home-cream);
}

.home-page .hero-banner {
    min-height: max(680px, 100svh);
    align-items: stretch;
    justify-content: stretch;
    text-align: left;
    isolation: isolate;
}

.home-page .hero-banner::before,
.home-page .hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-page .hero-banner::before {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7, 27, 25, 0.92) 0%, rgba(7, 27, 25, 0.67) 46%, rgba(7, 27, 25, 0.13) 78%),
        linear-gradient(0deg, rgba(7, 25, 23, 0.72) 0%, transparent 55%);
}

.home-page .hero-banner::after {
    z-index: -1;
    background:
        radial-gradient(circle at 78% 18%, rgba(216, 179, 84, 0.17), transparent 28rem),
        linear-gradient(180deg, transparent 82%, var(--home-cream) 100%);
}

.hero-atmosphere {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.16;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

.home-hero-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 6rem;
}

.home-page .hero-content {
    max-width: 850px;
    margin: 0;
    padding: 0;
}

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #94711f;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-eyebrow::before {
    content: "";
    width: 2.1rem;
    height: 1px;
    background: currentColor;
}

.home-page .hero-content .home-eyebrow {
    color: #efd586;
    animation: homeFadeUp 0.8s ease both;
}

.home-page .hero-title {
    max-width: 840px;
    margin: 1rem 0 1.2rem;
    padding: 0;
    color: #fff;
    font-size: clamp(3.1rem, 7vw, 6.6rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-align: left;
    text-wrap: balance;
    text-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
    animation: homeFadeUp 0.9s 0.08s ease both;
}

.home-page .hero-subtitle {
    max-width: 660px;
    margin: 0 0 2rem;
    padding: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 2vw, 1.22rem);
    font-weight: 400;
    line-height: 1.8;
    text-align: left;
    text-shadow: none;
    animation: homeFadeUp 0.9s 0.16s ease both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    animation: homeFadeUp 0.9s 0.24s ease both;
}

.home-page .hero-btn,
.hero-secondary-btn {
    min-height: 3.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.home-page .hero-btn {
    color: var(--home-forest);
    background: #f0d17a;
    border: 1px solid #f0d17a;
    box-shadow: 0 12px 30px rgba(216, 179, 84, 0.2);
    animation: none;
}

.home-page .hero-btn:hover {
    color: var(--home-forest);
    background: #f5dc97;
    border-color: #f5dc97;
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(216, 179, 84, 0.27);
}

.hero-secondary-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(10px);
}

.hero-secondary-btn:hover {
    color: var(--home-forest);
    background: #fff;
    transform: translateY(-3px);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.4rem;
    margin-top: 2.4rem;
    animation: homeFadeUp 0.9s 0.32s ease both;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
}

.hero-highlight i {
    color: #efd586;
}

.hero-scroll-link {
    position: absolute;
    z-index: 3;
    right: max(1.5rem, calc((100vw - 1320px) / 2));
    bottom: 4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero-scroll-link:hover {
    color: #fff;
}

.hero-scroll-line {
    width: 1px;
    height: 3.2rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
}

.hero-scroll-line::after {
    content: "";
    display: block;
    width: 100%;
    height: 45%;
    background: #efd586;
    animation: scrollLine 1.8s ease-in-out infinite;
}

.home-page .section {
    position: relative;
    padding: clamp(5rem, 10vw, 8rem) 0;
    overflow: hidden;
}

.home-page .section.bg-light {
    background:
        radial-gradient(circle at 92% 8%, rgba(180, 199, 168, 0.18), transparent 26rem),
        #f4f1ea !important;
}

.home-page .section.bg-white {
    background: var(--home-paper) !important;
}

.home-page .section-title {
    max-width: 800px;
    margin: 0.45rem auto 0;
    padding: 0;
    color: var(--home-ink);
    font-size: clamp(2.25rem, 5vw, 4.1rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.home-page .section-title::after {
    display: none;
}

.home-page .section-subtitle {
    max-width: 680px;
    margin: 1rem auto 0;
    padding: 0;
    color: var(--home-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.home-section-head {
    max-width: 900px;
    margin: 0 auto clamp(2.2rem, 5vw, 3.7rem);
    text-align: center;
}

.home-section-head .home-eyebrow {
    justify-content: center;
}

.section-ornament {
    position: absolute;
    top: 3rem;
    right: -5rem;
    width: 16rem;
    height: 16rem;
    border: 1px solid rgba(20, 48, 46, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.section-ornament::before,
.section-ornament::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(20, 48, 46, 0.06);
    border-radius: inherit;
}

.section-ornament::before {
    inset: 2.5rem;
}

.section-ornament::after {
    inset: 5rem;
}

.home-page #about {
    padding-top: clamp(4.5rem, 8vw, 7rem);
}

.home-page .about-content {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 590px;
    padding: 0 3rem 3rem 0;
}

.home-page .about-image {
    width: 100%;
    height: 100%;
    min-height: 560px;
    border-radius: 0 8rem 0 2rem;
    box-shadow: 0 25px 70px rgba(23, 48, 44, 0.16);
}

.home-page .about-image img {
    min-height: 560px;
}

.about-visual::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    width: 68%;
    height: 70%;
    background: #dce4d7;
    border-radius: 0 2rem 0 5rem;
}

.about-floating-note {
    position: absolute;
    right: 0;
    bottom: 4.5rem;
    max-width: 220px;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    color: #fff;
    background: var(--home-forest);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.1rem;
    box-shadow: 0 18px 45px rgba(20, 48, 46, 0.24);
}

.about-floating-note i {
    color: #efd586;
    font-size: 1.25rem;
}

.about-floating-note span {
    font-size: 0.8rem;
    line-height: 1.5;
}

.home-page .about-text {
    max-width: 560px;
}

.home-page .about-text h2 {
    margin: 0.65rem 0 1.5rem;
    color: var(--home-ink);
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.home-page .about-text p {
    margin-bottom: 1.1rem;
    color: #53625f;
    font-size: 1rem;
    line-height: 1.9;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.8rem;
    padding-bottom: 0.35rem;
    color: var(--home-forest);
    border-bottom: 1px solid rgba(20, 48, 46, 0.38);
    font-size: 0.9rem;
    font-weight: 600;
}

.about-link:hover {
    gap: 0.95rem;
    color: #94711f;
    border-color: #94711f;
}

.home-page .section-grid {
    gap: clamp(1rem, 2.5vw, 1.6rem);
    margin-top: 0;
}

.home-page .section-grid.cols-3,
.home-page .section-grid.cols-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .card-item {
    position: relative;
    overflow: hidden;
    background: var(--home-paper);
    border: 1px solid rgba(20, 48, 46, 0.08);
    border-radius: 1.4rem;
    box-shadow: 0 14px 40px rgba(28, 52, 48, 0.08);
    cursor: pointer;
    isolation: isolate;
    transition: transform 0.4s cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.home-page .card-item:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 179, 84, 0.38);
    box-shadow: 0 24px 55px rgba(24, 48, 44, 0.14);
}

.home-page .card-image {
    position: relative;
    height: clamp(230px, 25vw, 320px);
}

.home-page .card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(8, 28, 26, 0.48) 100%);
    opacity: 0.75;
    transition: opacity 0.4s ease;
}

.home-page .card-image img {
    transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.home-page .card-item:hover .card-image img {
    transform: scale(1.055);
}

.card-type-mark {
    position: absolute;
    z-index: 2;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    color: var(--home-forest);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    font-size: 0.82rem;
}

.home-page .card-body {
    padding: 1.35rem 1.35rem 0.5rem;
}

.home-page .card-title {
    margin-bottom: 0.65rem;
    color: var(--home-ink);
    font-size: clamp(1.3rem, 2.2vw, 1.65rem);
    font-weight: 500;
    line-height: 1.25;
}

.home-page .card-description {
    color: var(--home-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.home-page .card-footer {
    justify-content: flex-start;
    padding: 0.8rem 1.35rem 1.35rem;
    background: transparent;
    border-top: 0;
}

.home-page .card-link {
    gap: 0.6rem;
    color: var(--home-forest);
    font-size: 0.84rem;
    font-weight: 600;
}

.home-page .card-link i {
    width: 1.8rem;
    height: 1.8rem;
    display: grid;
    place-items: center;
    color: #8f6b19;
    background: rgba(216, 179, 84, 0.14);
    border-radius: 50%;
}

.home-page .card-link:hover {
    gap: 0.85rem;
    color: #8f6b19;
}

.home-page .section-grid.cols-1 .card-item {
    min-height: 360px;
    border-radius: 1.7rem;
}

.home-page .section-grid.cols-1 .card-image {
    flex-basis: 52%;
    min-height: 360px;
}

.home-page .section-grid.cols-1 .card-body {
    justify-content: flex-end;
    padding: 2rem 2rem 0.6rem;
}

.home-page .section-grid.cols-1 .card-title {
    font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.home-page .section-grid.cols-1 .card-footer {
    padding: 0.8rem 2rem 2rem;
}

.home-page .load-more-btn {
    min-height: 3.2rem;
    margin-top: 2.4rem;
    padding: 0.8rem 1.45rem;
    color: #fff;
    background: var(--home-forest);
    border: 1px solid var(--home-forest);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(20, 48, 46, 0.15);
    font-size: 0.88rem;
}

.home-page .load-more-btn:hover {
    background: var(--home-forest-soft);
    box-shadow: 0 16px 35px rgba(20, 48, 46, 0.21);
}

.home-page #reviews {
    padding: clamp(3.75rem, 7vw, 5.5rem) 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(216, 179, 84, 0.09), transparent 25rem),
        var(--home-forest) !important;
}

.home-page #reviews .home-section-head {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.home-page #reviews .home-eyebrow {
    color: #efd586;
}

.home-page #reviews .section-title {
    color: #fff;
    font-size: clamp(2.1rem, 4vw, 3.35rem);
}

.home-page #reviews .section-subtitle {
    color: rgba(255, 255, 255, 0.62);
}

.home-page .comment-form-wrapper {
    max-width: 780px;
    margin-bottom: 2.25rem;
}

.home-page .comment-form-card {
    padding: clamp(1.1rem, 2.5vw, 1.5rem);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.35rem;
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.home-page .comment-form-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.home-page .comment-form-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 500;
}

.home-page .comment-form-title i {
    color: #efd586;
}

.home-page .comment-textarea {
    min-height: 76px;
    padding: 0.8rem 1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 0.9rem;
}

.home-page .comment-textarea::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.home-page .comment-textarea:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(239, 213, 134, 0.7);
    box-shadow: 0 0 0 3px rgba(239, 213, 134, 0.1);
}

.home-page .comment-form-card .text-muted {
    color: rgba(255, 255, 255, 0.56) !important;
}

.home-page .comment-submit-btn {
    color: var(--home-forest);
    background: #efd586;
    border-radius: 999px;
}

.home-page .comment-submit-btn:hover:not(:disabled) {
    color: var(--home-forest);
    background: #f5df9e;
    box-shadow: 0 12px 25px rgba(216, 179, 84, 0.17);
}

.home-page .comments-list {
    margin-top: 0;
}

.home-page #commentsContainer {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
    margin-bottom: 1.25rem;
}

.home-page #reviews .spinner-border {
    color: #efd586 !important;
}

.home-page #reviews .alert {
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    border-radius: 1rem;
}

.home-page .comment-card {
    padding: 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    box-shadow: none;
    backdrop-filter: blur(9px);
}

.home-page .comment-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.home-page .comment-header {
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-color: rgba(255, 255, 255, 0.1);
}

.home-page .comment-avatar {
    width: 40px;
    height: 40px;
    color: var(--home-forest);
    background: #efd586;
}

.home-page .comment-author,
.home-page .comment-text {
    color: #fff;
}

.home-page .comment-date {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.78rem;
}

.home-page .comment-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

.home-page .comment-pagination .page-item .page-link {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.home-page .comment-pagination .page-item .page-link:hover,
.home-page .comment-pagination .page-item.active .page-link {
    color: var(--home-forest);
    background: #efd586;
    border-color: #efd586;
}

@keyframes homeFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }
    55%,
    100% {
        transform: translateY(230%);
    }
}

@media (max-width: 1199.98px) {
    .home-page .section-grid.cols-3,
    .home-page .section-grid.cols-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-visual {
        min-height: 520px;
    }

    .home-page .about-image,
    .home-page .about-image img {
        min-height: 490px;
    }
}

@media (max-width: 991.98px) {
    .home-page .about-content {
        grid-template-columns: 1fr;
    }

    .about-visual {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
        min-height: 560px;
    }

    .home-page .about-text {
        max-width: 720px;
        margin: 0 auto;
    }

    .home-page .section-grid.cols-1 .card-item {
        flex-direction: column;
    }

    .home-page .section-grid.cols-1 .card-image {
        flex: none;
        min-height: 330px;
    }
}

@media (max-width: 767.98px) {
    .home-page .hero-banner {
        min-height: 720px;
    }

    .home-page .hero-banner::before {
        background:
            linear-gradient(0deg, rgba(7, 27, 25, 0.94) 0%, rgba(7, 27, 25, 0.47) 74%),
            linear-gradient(90deg, rgba(7, 27, 25, 0.25), transparent);
    }

    .home-hero-shell {
        align-items: flex-end;
        padding-top: 7rem;
        padding-bottom: 7.5rem;
    }

    .home-page .hero-title {
        font-size: clamp(2.75rem, 13vw, 4.2rem);
    }

    .hero-scroll-link {
        display: none;
    }

    .hero-highlights {
        gap: 0.7rem;
    }

    .hero-highlight {
        width: 100%;
    }

    .home-page .section-grid.cols-3,
    .home-page .section-grid.cols-5 {
        grid-template-columns: 1fr;
    }

    .home-page .card-image {
        height: min(72vw, 360px);
    }

    .about-visual {
        min-height: 450px;
        padding: 0 1.5rem 1.5rem 0;
    }

    .home-page .about-image,
    .home-page .about-image img {
        min-height: 430px;
    }

    .home-page .about-image {
        border-radius: 0 4rem 0 1.5rem;
    }

    .about-floating-note {
        right: 0;
        bottom: 2.5rem;
    }

    .home-page .section-grid.cols-1 .card-image {
        min-height: 250px;
    }

    .home-page .comment-form-card .d-flex.justify-content-between {
        align-items: stretch !important;
        flex-direction: column;
        gap: 1rem;
    }

    .home-page .comment-submit-btn {
        justify-content: center;
    }
}

@media (max-width: 479.98px) {
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-page .hero-btn,
    .hero-secondary-btn {
        width: 100%;
    }

    .about-visual {
        min-height: 390px;
    }

    .home-page .about-image,
    .home-page .about-image img {
        min-height: 370px;
    }

    .about-floating-note {
        max-width: 185px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page *,
    .home-page *::before,
    .home-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
