@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500;1,600&display=swap');

:root {
    --ink: #18372d;
    --muted: #6b7d75;
    --green: #2f6f54;
    --sage: #dfeee5;
    --mint: #f2f8f4;
    --cream: #fbfaf5;
    --gold: #c7a35c;
    --white: #fff;
    --line: #e5ece7;
    --shadow: 0 24px 70px rgba(34, 70, 55, .10)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 250, 245, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 236, 231, .8)
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: .02em
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px 14px 14px 3px;
    background: linear-gradient(145deg, #6eaa7f, #d6b66d);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 19px
}

.logo small {
    display: block;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .2em;
    font-weight: 600
}

.navlinks {
    display: flex;
    gap: 25px;
    align-items: center;
    font-size: 14px;
    font-weight: 600
}

.navlinks a {
    color: #456158
}

.navlinks a:hover,
.navlinks a.active {
    color: var(--green)
}

.nav-cta {
    padding: 11px 17px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff !important
}

.menu {
    display: none;
    border: 0;
    background: none;
    font-size: 26px
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 110px;
    background: linear-gradient(135deg, var(--ink) 0%, #173d32 100%);
    color: var(--white);
}

.hero-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: clamp(550px, 85vh, 750px);
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    /* Dark green-tinted gradient to guarantee white text readability on the left */
    background: linear-gradient(90deg, 
        rgba(15, 35, 29, 0.95) 0%, 
        rgba(15, 35, 29, 0.85) 35%, 
        rgba(15, 35, 29, 0.4) 65%, 
        rgba(15, 35, 29, 0.1) 85%, 
        transparent 100%);
    z-index: 2;
}

.hero-slider .container {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* Force left-alignment for slider text and content */
.hero-slider .hero-copy {
    text-align: left !important;
    align-items: flex-start !important;
    margin: 0 !important;
    max-width: 650px;
    display: flex !important;
    flex-direction: column !important;
}

.hero-slider .hero-copy h1 {
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.05;
    letter-spacing: -.045em;
    margin: 15px 0 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-slider .hero-copy p {
    font-size: clamp(15px, 2.5vw, 18px);
    color: #c2d5cd !important;
    margin-bottom: 25px;
    max-width: 560px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-slider .actions {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 12px;
    margin: 20px 0 30px !important;
    width: auto !important;
}

.hero-slider .trust-row {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 20px;
    margin-top: 15px !important;
    width: auto !important;
    font-size: 13px;
    color: #a9c6b7;
}

.hero-slider .trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    user-select: none;
}

.slider-arrow:hover {
    background: var(--white);
    color: var(--ink);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-prev {
    left: 25px;
}

.slider-next {
    right: 25px;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.75);
}

.slider-dots .dot.active {
    background: var(--white);
    width: 28px;
    border-radius: 5px;
}

/* Mobile responsive adjustments */
@media (max-width: 900px) {
    .hero-slider {
        height: 600px;
    }
    .slider-arrow {
        width: 42px;
        height: 42px;
        font-size: 26px;
    }
    .slider-prev {
        left: 15px;
    }
    .slider-next {
        right: 15px;
    }
}

@media (max-width: 600px) {
    .hero-slider {
        height: 520px;
    }
    .slide-overlay {
        background: linear-gradient(180deg, rgba(15, 35, 29, 0.85) 0%, rgba(15, 35, 29, 0.95) 100%);
    }
    .hero-slider .hero-copy {
        text-align: center !important;
        align-items: center !important;
        max-width: 100%;
        padding: 0 10px;
    }
    .hero-slider .actions {
        justify-content: center !important;
        width: 100% !important;
    }
    .hero-slider .trust-row {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 10px 15px;
    }
    .slider-arrow {
        display: none; /* Hide arrows on mobile for clean screen spacing, dots only */
    }
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .17em;
    color: #6c8a7b
}

.hero h1,
.page-hero h1 {
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.03;
    letter-spacing: -.055em;
    margin: 18px 0 24px
}

.hero h1 em,
.page-hero h1 em,
h2 em {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--green)
}

p {
    color: var(--muted)
}

.hero-copy>p {
    font-size: 18px;
    max-width: 590px
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 30px 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer
}

.btn-primary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 12px 25px rgba(47, 111, 84, .18)
}

.btn-primary:hover {
    transform: translateY(-2px)
}

.btn-ghost {
    border-color: #cad8d0;
    color: var(--ink);
    background: rgba(255, 255, 255, .55)
}

.btn-light {
    background: #fff;
    color: var(--ink)
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, .6);
    color: #fff
}

.btn-small {
    padding: 10px 16px;
    background: #edf5ef;
    color: var(--green)
}

.trust-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #72827b;
    margin-top: 24px
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center
}

.hero-card {
    width: min(420px, 80%);
    height: 500px;
    background: linear-gradient(145deg, #dceee1, #f8f2df);
    border-radius: 42% 42% 28px 28px;
    box-shadow: var(--shadow);
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden
}

.hero-card img {
    width: 74%;
    height: auto;
    filter: drop-shadow(0 25px 25px rgba(27, 59, 45, .16));
    position: relative;
    z-index: 2
}

.leaf-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .7), transparent 25%), radial-gradient(circle at 75% 70%, rgba(116, 164, 127, .16), transparent 30%)
}

.floating-tag {
    position: absolute;
    right: -18px;
    top: 90px;
    background: #fff;
    padding: 15px 18px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(20, 55, 42, .12);
    font-size: 12px;
    color: var(--muted)
}

.floating-tag strong {
    font-size: 15px;
    color: var(--ink)
}

.mini-card {
    position: absolute;
    left: 0;
    bottom: 25px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 18px 20px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 3px
}

.mini-card span {
    font-size: 11px;
    color: var(--gold)
}

.mini-card small {
    color: var(--muted)
}

.section {
    padding: 100px 0
}

.section-head {
    margin-bottom: 42px
}

.section-head.center,
.center {
    text-align: center
}

.section-head.row {
    display: flex;
    justify-content: space-between;
    align-items: end
}

.section-head h2,
h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -.04em;
    margin: 12px 0
}

.section-head p {
    max-width: 650px
}

.text-link {
    font-weight: 700;
    color: var(--green)
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.feature {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    transition: .3s
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.icon {
    font-size: 28px;
    margin-bottom: 20px
}

.feature h3 {
    margin: 0 0 8px
}

.feature p {
    font-size: 14px;
    margin: 0
}

.products-strip {
    background: #f0f6f1
}

.product-grid {
    display: grid;
    gap: 22px
}

.product-grid.three {
    grid-template-columns: repeat(3, 1fr)
}

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    overflow: hidden;
    transition: .3s;
    display: block
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.product-image {
    height: 280px;
    background: linear-gradient(145deg, #edf6ef, #f7f0df);
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden
}

.product-image.large {
    height: 330px
}

.product-image img {
    width: 72%;
    height: 88%;
    object-fit: contain
}

.product-image span {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(10px);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    color: var(--green)
}

.product-body {
    padding: 23px
}

.product-body h3 {
    margin: 0 0 6px;
    font-size: 22px
}

.product-body p {
    margin: 0 0 14px;
    font-size: 14px
}

.product-body ul {
    padding-left: 18px;
    color: var(--muted);
    font-size: 13px
}

.learn {
    font-size: 13px;
    font-weight: 700;
    color: var(--green)
}

.journey {
    padding: 70px 0
}

.journey-box {
    background: var(--ink);
    color: #fff;
    border-radius: 36px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    overflow: hidden;
    position: relative
}

.journey-box:after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    right: -120px;
    top: -170px
}

.journey-box p {
    color: #bfd0c8;
    max-width: 620px
}

.journey-box h2 {
    font-size: 46px
}

.journey-box .eyebrow {
    color: #a9c6b7
}

.journey-actions {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 2
}

.page-hero {
    position: relative;
    padding: 100px 0 90px;
    background: linear-gradient(135deg, var(--ink) 0%, #1c4236 100%);
    color: var(--white);
    overflow: hidden;
    margin-bottom: 20px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.page-hero.compact {
    padding: 80px 0 70px;
}

.page-hero p {
    font-size: 18px;
    max-width: 720px;
    color: #c2d5cd;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start
}

.lead {
    font-size: 19px;
    line-height: 1.8
}

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 65px
}

.principles article,
.steps article,
.income-grid article {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px
}

.principles b,
.steps span,
.income-grid span {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: .1em
}

.quote {
    max-width: 800px;
    text-align: center
}

.quote>span {
    font-family: serif;
    font-size: 100px;
    line-height: .5;
    color: #adc8b7
}

.soft {
    background: #eef5ef
}

.filterbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 35px
}

.filterbar h2 {
    font-size: 38px
}

.filterbar select {
    padding: 13px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink)
}

.notice,
.warning {
    margin-top: 30px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #fff8e9;
    border: 1px solid #f0dfb7;
    color: #75613a;
    font-size: 13px
}

.detail {
    padding-top: 55px
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.detail-image {
    background: #eef5ef;
    border-radius: 40px;
    min-height: 600px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden
}

.detail-image img {
    width: 72%;
    height: 72%;
    object-fit: contain
}

.image-note {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    letter-spacing: .1em;
    background: #fff;
    padding: 7px 10px;
    border-radius: 999px;
    white-space: nowrap;
    color: #777
}

.detail-copy h1 {
    font-size: 60px;
    line-height: 1.05;
    letter-spacing: -.05em;
    margin: 12px 0
}

.chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 24px 0
}

.chips span {
    padding: 8px 12px;
    border-radius: 999px;
    background: #edf5ef;
    color: var(--green);
    font-size: 11px;
    font-weight: 700
}

.check-list {
    padding-left: 0;
    list-style: none;
    color: var(--muted)
}

.check-list li {
    margin: 9px 0
}

.check-list li:before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    margin-right: 10px
}

.fine {
    font-size: 11px
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px
}

.steps article {
    min-height: 260px
}

.steps h3 {
    font-size: 23px;
    margin: 12px 0
}

.support-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.support-list span {
    padding: 15px 17px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid var(--line);
    font-weight: 600
}

.philosophy {
    text-align: center
}

.flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 700
}

.flow span,
.flow strong {
    padding: 12px 16px;
    border-radius: 999px;
    background: #edf5ef;
    color: var(--green)
}

.flow strong {
    background: var(--ink);
    color: #fff
}

.income-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

.income-grid h2 {
    font-size: 30px;
    margin: 10px 0
}

.income-grid article p {
    max-width: 580px
}

.faq {
    max-width: 900px
}

.faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    margin: 12px 0;
    padding: 0 22px
}

.faq summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 0;
    font-weight: 700
}

.faq summary::-webkit-details-marker {
    display: none
}

.faq summary:after {
    content: '+';
    float: right;
    color: var(--green);
    font-size: 22px
}

.faq details[open] summary:after {
    content: '−'
}

.faq details p {
    padding: 0 0 22px;
    margin: 0
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px
}

.contact-card {
    background: var(--ink);
    color: #fff;
    padding: 45px;
    border-radius: 28px
}

.contact-card p {
    color: #bdd0c6
}

.contact-card h2 {
    color: #fff
}

.contact-item {
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding: 18px 0;
    display: grid;
    gap: 4px
}

.contact-item span {
    color: #c2d2cb
}

.form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 38px;
    display: grid;
    gap: 18px
}

.form label {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    display: grid;
    gap: 7px
}

.form input,
.form select,
.form textarea {
    font: inherit;
    border: 1px solid #dce5df;
    border-radius: 14px;
    padding: 13px 15px;
    outline: none;
    background: #fbfcfa
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    border-color: #7fa98e;
    box-shadow: 0 0 0 4px #e8f2eb
}

.form-msg {
    font-size: 13px;
    color: var(--green)
}

.legal {
    min-height: 55vh
}

.legal .container {
    max-width: 850px
}

.legal h2 {
    font-size: 30px;
    margin-top: 40px
}

.site-footer {
    background: #132c24;
    color: #d6e3dc;
    padding: 60px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px
}

.footer-grid h4 {
    color: #fff;
    margin: 0 0 15px
}

.footer-grid a {
    display: block;
    color: #aec0b8;
    font-size: 13px;
    margin: 8px 0
}

.footer-brand p {
    color: #9fb3aa;
    max-width: 300px;
    font-size: 13px
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 35px;
    padding-top: 20px;
    color: #8da49a;
    font-size: 11px;
    display: flex;
    justify-content: space-between
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: .7s ease
}

.reveal.show {
    opacity: 1;
    transform: none
}

@media(max-width:900px) {
    .navlinks {
        display: none
    }

    .menu {
        display: block
    }

    .hero-grid,
    .split,
    .detail-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .hero-visual {
        min-height: 450px
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr
    }

    .product-grid.three {
        grid-template-columns: 1fr
    }

    .steps {
        grid-template-columns: 1fr 1fr
    }

    .journey-box {
        display: block;
        padding: 42px
    }

    .journey-actions {
        margin-top: 25px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .principles {
        grid-template-columns: 1fr
    }

    .detail-copy h1 {
        font-size: 46px
    }
}

@media(max-width:600px) {
    .container {
        width: min(100% - 28px, 1180px)
    }

    .nav {
        height: 68px
    }

    .hero {
        padding: 55px 0
    }

    .hero h1,
    .page-hero h1 {
        font-size: 46px
    }

    .feature-grid,
    .income-grid,
    .steps {
        grid-template-columns: 1fr
    }

    .section {
        padding: 70px 0
    }

    .section-head.row,
    .filterbar {
        display: block
    }

    .filterbar select {
        margin-top: 15px
    }

    .hero-card {
        height: 400px
    }

    .journey-box h2 {
        font-size: 38px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .copyright {
        display: block
    }

    .copyright span {
        display: block;
        margin-top: 8px
    }

    .detail-image {
        min-height: 430px
    }

    .image-note {
        font-size: 7px
    }
}

/* Elegant Full-Size Banner Styles */
.elegant-banner {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ink) 0%, #1c4236 100%);
    color: var(--white);
    overflow: hidden;
    margin: 40px 0;
}

.elegant-banner.light {
    background: linear-gradient(135deg, var(--sage) 0%, var(--mint) 100%);
    color: var(--ink);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 0;
    padding: 90px 0;
}

.elegant-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.elegant-banner-text {
    flex: 1;
    max-width: 750px;
}

.elegant-banner-text .eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .17em;
    margin-bottom: 12px;
}

.elegant-banner:not(.light) .eyebrow {
    color: #a9c6b7;
}

.elegant-banner.light .eyebrow {
    color: var(--green);
}

.elegant-banner-text h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -.03em;
    margin: 10px 0 16px;
    color: inherit;
}

.elegant-banner-text h2 em {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-style: italic;
}

.elegant-banner.light h2 em {
    color: var(--green);
}

.elegant-banner:not(.light) h2 em {
    color: var(--gold);
}

.elegant-banner-text p {
    font-size: 17px;
    margin: 0;
    line-height: 1.6;
}

.elegant-banner.light p {
    color: var(--muted);
}

.elegant-banner:not(.light) p {
    color: #cad8d0;
}

.elegant-banner-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.elegant-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.elegant-banner.light::before {
    background: radial-gradient(circle, rgba(47, 111, 84, 0.06) 0%, transparent 70%);
}

@media(max-width: 900px) {
    .elegant-banner {
        padding: 60px 0;
    }

    .elegant-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .elegant-banner-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Logo Text Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 55px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
    display: inline-block;
}

.site-footer .logo-text {
    color: var(--white);
}

/* Fix contrast for emphasized text on dark green banners */
.hero h1 em,
.page-hero h1 em,
.elegant-banner:not(.light) h2 em,
.elegant-banner:not(.light) em {
    color: var(--gold) !important;
}

/* Center page-hero banner content for all pages */
.page-hero {
    text-align: center;
}

.page-hero p {
    margin-left: auto;
    margin-right: auto;
}

/* Center section-head paragraph blocks */
.section-head.center p, .center p {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Full card size product images */
.product-card .product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Center warning and notice cards */
.warning, .notice {
    text-align: center !important;
    max-width: 850px !important;
    margin: 35px auto 0 !important;
}

/* Footer Contact Details Styles */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13.5px;
    color: #aec0b8;
    line-height: 1.6;
    margin-top: 10px;
}

.footer-contact-item {
    display: block;
}

.footer-contact-item strong {
    color: var(--white);
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

/* Restore flex-alignment on footer logo to prevent stacking */
.site-footer .logo {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

/* Set product details page images to full card size */
.detail-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}