@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
    --deep-green: #1B4332;
    --mid-green: #2D6A4F;
    --accent-green: #40916C;
    --light-green: #95D5B2;
    --pale-green: #D8F3DC;
    --gold: #B7892A;
    --gold-light: #D4A853;
    --warm-white: #FAFAF7;
    --cream: #F5F0E8;
    --text-dark: #1A1A1A;
    --text-mid: #3D3D3D;
    --text-light: #6B6B6B;
    --border: #E5E0D8;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .09);
    --radius: 12px;
    --radius-sm: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 15px;
}

header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}

.logo-img {
    height: 44px;
    width: auto;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--deep-green);
    letter-spacing: -.5px;
}

.logo-text span {
    color: var(--gold);
}

nav {
    display: flex;
    align-items: center;
    gap: .3rem;
}

nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    padding: .5rem 1rem;
    border-radius: 6px;
    transition: all .18s;
    font-size: .88rem;
}

nav a:hover {
    color: var(--deep-green);
    background: var(--pale-green);
}

nav a.cta {
    background: var(--deep-green);
    color: #fff;
    padding: .55rem 1.3rem;
}

nav a.cta:hover {
    background: var(--mid-green);
}

main {
    min-height: calc(100vh - 72px);
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.wrap-sm {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--mid-green) 50%, var(--accent-green) 100%);
    color: #fff;
    padding: 5rem 2rem 4rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L37.5 22.5L60 30L37.5 37.5L30 60L22.5 37.5L0 30L22.5 22.5Z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-content p {
    font-size: 1.05rem;
    opacity: .85;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
}

.hero-stat-lbl {
    font-size: .72rem;
    opacity: .7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.kpi-strip {
    background: var(--pale-green);
    padding: 2rem 2rem;
}

.kpi-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.kpi-strip-item {
    padding: 1rem;
}

.kpi-strip-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--deep-green);
}

.kpi-strip-lbl {
    font-size: .78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}

.sec-hdr {
    text-align: center;
    margin-bottom: 3rem;
}

.sec-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: .6rem;
}

.sec-hdr h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--deep-green);
    font-weight: 700;
}

.sec-hdr p {
    color: var(--text-light);
    max-width: 600px;
    margin: .5rem auto 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: var(--cream);
}

.card-body {
    padding: 1.5rem;
}

.card-tag {
    display: inline-flex;
    align-items: center;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--accent-green);
    background: var(--pale-green);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: .5rem;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .4rem;
}

.card-text {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.6;
}

.card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--deep-green);
    margin: .5rem 0;
}

.card-foot {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--warm-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.team-card-body {
    padding: 1.5rem;
}

.team-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-green);
}

.team-card-role {
    font-size: .85rem;
    color: var(--gold);
    font-weight: 600;
    margin: .25rem 0;
}

.team-card-bio {
    font-size: .82rem;
    color: var(--text-light);
    line-height: 1.5;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.tl-item {
    position: relative;
    padding-bottom: 2rem;
}

.tl-item:last-child {
    padding-bottom: 0;
}

.tl-dot {
    position: absolute;
    left: -2rem;
    top: 4px;
    width: 32px;
    height: 32px;
    background: var(--deep-green);
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
    box-shadow: var(--shadow-sm);
}

.tl-content {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
}

.tl-title {
    font-weight: 700;
    color: var(--deep-green);
    margin-bottom: .3rem;
}

.tl-text {
    font-size: .88rem;
    color: var(--text-light);
}

.form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.fg {
    margin-bottom: 1.2rem;
}

.fg label {
    display: block;
    font-weight: 600;
    font-size: .86rem;
    margin-bottom: .4rem;
    color: var(--text-dark);
}

.fg input,
.fg textarea,
.fg select {
    width: 100%;
    padding: .7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .93rem;
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    color: var(--text-dark);
    transition: border-color .18s, box-shadow .18s;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(64, 145, 108, .1);
}

.fg textarea {
    min-height: 120px;
    resize: vertical;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.fe {
    color: #DC2626;
    font-size: .78rem;
    margin-top: .25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .65rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .18s;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
}

.btn-primary {
    background: var(--deep-green);
    color: #fff;
    border-color: var(--deep-green);
}

.btn-primary:hover {
    background: var(--mid-green);
    border-color: var(--mid-green);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(27, 67, 50, .3);
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.btn-gold:hover {
    background: #9A7020;
    border-color: #9A7020;
}

.btn-outline {
    background: transparent;
    color: var(--deep-green);
    border-color: var(--deep-green);
}

.btn-outline:hover {
    background: var(--deep-green);
    color: #fff;
}

.btn-ghost {
    background: var(--cream);
    color: var(--text-dark);
    border-color: var(--border);
}

.btn-ghost:hover {
    background: var(--border);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-sm {
    padding: .4rem 1rem;
    font-size: .82rem;
}

.tbl-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: .88rem;
}

thead {
    background: var(--cream);
}

th {
    padding: .85rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

td {
    padding: .9rem 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: var(--warm-white);
}

.doc-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    transition: all .18s;
}

.doc-card:hover {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-sm);
}

.doc-icon {
    font-size: 2rem;
}

.doc-info {
    flex: 1;
}

.doc-title {
    font-weight: 600;
    color: var(--deep-green);
    margin-bottom: .15rem;
}

.doc-meta {
    font-size: .78rem;
    color: var(--text-light);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: .65rem;
    overflow: hidden;
    background: #fff;
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    font-size: .93rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
    font-family: 'DM Sans', sans-serif;
    transition: background .15s;
}

.faq-q:hover {
    background: var(--cream);
}

.faq-arrow {
    transition: transform .25s;
    color: var(--accent-green);
    flex-shrink: 0;
    font-style: normal;
}

.faq-q.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    color: var(--text-light);
    font-size: .88rem;
    line-height: 1.75;
    padding: 0 1.25rem;
}

.faq-a.open {
    max-height: 500px;
    padding: .65rem 1.25rem 1.1rem;
}

footer {
    background: var(--deep-green);
    color: rgba(255, 255, 255, .65);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.foot-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.foot-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: .5rem;
}

.foot-brand span {
    color: var(--gold-light);
}

.foot-desc {
    font-size: .85rem;
    line-height: 1.6;
    opacity: .7;
    max-width: 300px;
}

.foot-col h4 {
    color: #fff;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.foot-col a {
    display: block;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    font-size: .84rem;
    padding: .25rem 0;
    transition: color .18s;
}

.foot-col a:hover {
    color: #fff;
}

.foot-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .78rem;
    opacity: .5;
}

.flash-wrap {
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.flash {
    padding: .85rem 1.2rem;
    border-radius: var(--radius-sm);
    margin: .75rem 0;
    font-size: .88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.flash.success {
    background: #DCFCE7;
    color: #166534;
    border: 1px solid #BBF7D0;
}

.flash.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.flash.info {
    background: #DBEAFE;
    color: #1E40AF;
    border: 1px solid #BFDBFE;
}

.empty {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: .3;
}

.empty h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: .5rem;
}

.empty p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .77rem;
    font-weight: 600;
}

.badge-pending {
    background: #FEF3C7;
    color: #92400E;
}

.badge-paid {
    background: #DBEAFE;
    color: #1D4ED8;
}

.badge-processing {
    background: #E0F2FE;
    color: #0369A1;
}

.badge-dispatched {
    background: #DCFCE7;
    color: #166534;
}

.badge-delivered {
    background: #DCFCE7;
    color: #166534;
}

@media(max-width:960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 1.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .kpi-strip-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .foot-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    header {
        padding: 0 1.25rem;
    }

    nav a {
        padding: .4rem .7rem;
        font-size: .8rem;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .kpi-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .frow {
        grid-template-columns: 1fr;
    }

    .foot-inner {
        grid-template-columns: 1fr;
    }
}

@media(max-width:480px) {
    .kpi-strip-inner {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
}