:root {
    --green-900: #0a1711;
    --green-800: #10281d;
    --green-700: #163524;
    --gold: #d9b56d;
    --gold-soft: #e6c988;
    --orange: #e8842a;
    --text: #ffffff;
    --text-dim: #d8dfda;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Poppins, sans-serif;
    background: radial-gradient(circle at 15% 15%, #234b36 0%, var(--green-800) 55%, var(--green-900) 100%);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Blurred decorative leaves in corners */
.bg-leaf {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    filter: blur(60px);
    opacity: .5;
}

.bg-leaf--tl {
    top: -120px; left: -120px;
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(88, 160, 96, .55), transparent 70%);
}

.bg-leaf--bl {
    bottom: -140px; left: -100px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(70, 140, 85, .45), transparent 70%);
}

.bg-leaf--tr {
    top: -100px; right: -140px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(60, 120, 70, .4), transparent 70%);
}

section, footer {
    position: relative;
    z-index: 1;
}

/* ---------- HERO ---------- */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5vw 6vw 3vw;
    gap: clamp(30px, 4vw, 60px);
}

.left {
    max-width: 640px;
    flex: 1;
}

/* Logo */
.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: clamp(20px, 3vh, 34px);
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(8px, 1.1vw, 14px);
    line-height: 1;
}

.brand-line {
    display: flex;
    align-items: baseline;
    gap: clamp(12px, 1.6vw, 22px);
}

.brand-name {
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}

.brand-gross {
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--orange);
}

.ihar {
    position: relative;
}

.ileaf {
    position: absolute;
    width: 0.42em;
    height: 0.42em;
    top: -0.24em;
    left: 50%;
    transform: translateX(-60%) rotate(12deg);
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .35));
}

.brand-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(11px, 1.3vw, 15px);
    font-weight: 600;
    letter-spacing: clamp(3px, 0.45vw, 5px);
    color: var(--gold);
    white-space: nowrap;
}

.brand-tagline::after {
    content: "";
    flex: 1;
    max-width: 90px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: .6;
}

.left h1 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: clamp(30px, 3.8vw, 52px);
    line-height: 1.08;
    letter-spacing: 1px;
    margin-top: 4px;
}

.left em {
    font-family: "Great Vibes", cursive;
    color: var(--gold);
    font-style: normal;
    font-weight: 400;
    font-size: clamp(34px, 4.4vw, 60px);
    display: inline-block;
    margin-top: 4px;
}

.lead {
    margin: 24px 0 0;
    color: var(--text-dim);
    font-size: clamp(15px, 1.15vw, 18px);
    font-weight: 300;
    line-height: 1.75;
    max-width: 540px;
}

.lead strong {
    color: #fff;
    font-weight: 600;
}

.divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0;
    max-width: 300px;
    color: var(--gold);
}

.divider::before,
.divider::after {
    content: "";
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    flex: 1;
}

.sub {
    color: var(--text-dim);
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 22px;
}

.contact {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .07);
    padding: 15px 26px;
    border-radius: 40px;
    border: 1px solid rgba(217, 181, 109, .32);
    font-size: 15px;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: border-color .25s, background .25s, transform .2s;
}

.pill:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, .12);
    transform: translateY(-2px);
}

.pill-ico {
    color: var(--gold);
}

/* Hero image */
.right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 115%;
    height: 115%;
    background: radial-gradient(circle, rgba(217, 181, 109, .12) 0%, rgba(35, 75, 54, .25) 40%, transparent 72%);
    filter: blur(50px);
    z-index: -1;
}

.hero-image {
    width: 620px;
    max-width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .45), 0 20px 40px rgba(0, 0, 0, .25);
    transition: transform .4s ease;
    animation: float 6s ease-in-out infinite;
}

.hero-image:hover {
    transform: scale(1.02);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ---------- SUBSCRIBE ---------- */
.subscribe {
    margin: 10px 6vw 40px;
    padding: 34px 40px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(217, 181, 109, .25);
    border-radius: 22px;
    backdrop-filter: blur(10px);
}

.subscribe-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.subscribe-head h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
}

.subscribe-head p {
    color: var(--text-dim);
    font-weight: 300;
    font-size: 15px;
    max-width: 360px;
}

.subscribe-form {
    display: flex;
    align-items: stretch;
    gap: 12px;
    flex: 1;
    min-width: 300px;
    max-width: 620px;
}

.subscribe-form input {
    flex: 1;
    min-width: 0;
    padding: 16px 22px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .96);
    color: #12271c;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
}

.subscribe-form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(217, 181, 109, .22);
}

.subscribe-form button {
    padding: 16px 34px;
    border-radius: 40px;
    border: none;
    background: linear-gradient(135deg, var(--gold), #c79f52);
    color: #16281c;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s, opacity .2s;
    box-shadow: 0 10px 24px rgba(217, 181, 109, .28);
}

.subscribe-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(217, 181, 109, .4);
}

.subscribe-form button:disabled {
    opacity: .6;
    cursor: default;
    transform: none;
}

.subscribe-msg {
    margin-top: 14px;
    font-size: 14.5px;
    font-weight: 500;
    min-height: 20px;
    transition: color .2s;
}

.subscribe-msg.ok { color: #8fe0a3; }
.subscribe-msg.err { color: #ff9c9c; }

/* ---------- FEATURES ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    padding: 0 6vw 6vw;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    padding: 26px 26px 28px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
    transition: transform .3s, border-color .3s;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 181, 109, .4);
}

.feat-ico {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
}

.card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.card p {
    color: var(--text-dim);
    font-weight: 300;
    font-size: 14.5px;
    line-height: 1.6;
}

/* ---------- FOOTER ---------- */
.footer {
    text-align: center;
    padding: 28px 6vw 40px;
    color: rgba(216, 223, 218, .55);
    font-size: 13.5px;
    font-weight: 300;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 8vw;
        gap: 34px;
    }

    .left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .brand,
    .brand-text { align-items: center; }
    .brand-line { justify-content: center; }
    .brand-tagline { justify-content: center; }
    .brand-tagline::after { display: none; }
    .divider { margin-left: auto; margin-right: auto; }
    .contact { justify-content: center; }
    .lead { margin-left: auto; margin-right: auto; }

    .subscribe-inner { flex-direction: column; align-items: stretch; text-align: center; }
    .subscribe-head p { max-width: none; }
    .subscribe-form { max-width: none; }
}

@media (max-width: 520px) {
    .brand-name,
    .brand-gross { font-size: 30px; letter-spacing: 0.06em; }
    .brand-line { gap: 12px; }
    .brand-tagline { font-size: 10px; letter-spacing: 2px; }
    .brand-tagline::before,
    .brand-tagline::after { width: 16px; }
    .subscribe-form { flex-direction: column; }
    .subscribe-form button { width: 100%; }
}
