/* ==========================================================================
   RESET / NORMALIZE
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
    color: #2a2a2a;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
picture,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.15;
    color: #1f2a14;
}

p {
    line-height: 1.6;
}

/* ==========================================================================
   DON EFE — Main Stylesheet
   Glassmorphism landing page
   ========================================================================== */

:root {
    /* Brand palette */
    --green-primary: #5a8a2a;
    --green-dark: #3f6a18;
    --green-light: #8bb455;
    --green-text: #2f4a14;
    --gold: #d4b14a;
    --gold-dark: #b8962a;
    --cream: #f7f3e8;
    --bg-soft: #eef5e6;

    /* Neutral */
    --black: #1f2a14;
    --text: #2a2a2a;
    --text-light: #5a5a5a;
    --white: #ffffff;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-bg-strong: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.55);
    --glass-shadow: 0 8px 32px rgba(60, 90, 30, 0.18);
    --glass-glow: 0 0 40px rgba(212, 177, 74, 0.25);
}

/* ===================== Layout helpers ===================== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================== Buttons ===================== */
.btn {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 999px;
    transition: all .25s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    letter-spacing: .2px;
}

.btn-primary {
    background: var(--green-primary);
    color: var(--white);
    padding: 10px 22px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(90, 138, 42, 0.35);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(90, 138, 42, 0.45);
}

.btn-outline {
    border-color: var(--gold);
    color: var(--green-text);
    font-weight: 600;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

/* ===================== HEADER ===================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

/* Pill nav container — bevel glass */
.main-nav {
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    padding: 5px 8px;
    box-shadow:
        inset 0 1.5px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.07),
        inset 1px 0 0 rgba(255, 255, 255, 0.55),
        inset -1px 0 0 rgba(0, 0, 0, 0.04),
        0 6px 24px rgba(60, 90, 30, 0.14),
        0 1px 4px rgba(0, 0, 0, 0.08);
}

.main-nav ul {
    display: flex;
    gap: 2px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #3a3a3a;
    padding: 7px 16px;
    border-radius: 999px;
    transition: background .2s ease, color .2s ease;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green-primary);
    background: rgba(255, 255, 255, 0.65);
}

.main-nav a.active::after {
    display: none;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    padding-top: 70px;
    padding-bottom: 0;
    overflow: visible;
    isolation: isolate;
}

/* Semi-circle hero image (pre-cropped PNG) */
.hero-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.hero-content {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 15px;
    max-width: 780px;
    position: relative;
    z-index: 2;
}

.hero-pre {
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    color: var(--green-primary);
    font-weight: 600;
    margin-bottom: 6px;
    font-style: italic;
}

.hero-title {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, 
        #FFF2B2 0%, 
        #FDE08B 15%, 
        #E8A92A 40%, 
        #D8951D 65%, 
        #A66B12 85%, 
        #593605 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0px 8px 16px rgba(25, 15, 3, 0.7));
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 31px);
    font-weight: 700;
    color: #42830B;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -.25px;
}

.hero-desc {
    font-size: 13px;
    color: #3a3a3a;
    max-width: 420px;
    margin: 0 auto 18px;
    line-height: 1.6;
}

/* Decorative floating elements */
.deco {
    position: absolute;
    width: 35px;
    height: 35px;
    opacity: .85;
    pointer-events: none;
    z-index: 1;
}

.deco-1 { top: 65px;  left: 8%;  width: 45px; height: 45px; transform: rotate(-15deg); }
.deco-2 { top: 100px; right: 10%; width: 40px; height: 40px; }
.deco-3 { top: 160px; left: 6%;  width: 38px; height: 38px; }
.deco-4 { top: 140px; right: 8%;  width: 35px; height: 35px; }

/* ===================== CATEGORIES ===================== */
.categories {
    position: relative;
    z-index: 2;
    margin-top: 8px;
    padding-bottom: 23px;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 15px 14px 17px;
    max-width: 645px;
    margin-left: auto;
    margin-right: auto;
    box-shadow:
        var(--glass-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.categories-footer-title {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(16px, 2.2vw, 25px);
    font-weight: 700;
    color: var(--green-text);
    margin-top: 18px;
    letter-spacing: -0.25px;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.85);
}

.section-title {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 1.5px;
    margin-bottom: 11px;
    font-family: 'Inter', sans-serif;
}

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

.glass-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 11px;
    padding: 9px 8px 8px;
    text-align: center;
    box-shadow:
        0 4px 24px rgba(90, 138, 42, 0.12),
        var(--glass-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(212, 177, 74, 0.3), transparent 40%, rgba(90, 138, 42, 0.15));
    border-radius: 24px;
    z-index: -1;
    opacity: .6;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 10px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.15;
    min-height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image {
    width: 85%;
    aspect-ratio: 1 / 1;
    margin: 5px auto;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-sub {
    font-size: 8px;
    color: #4a4a4a;
    font-weight: 500;
    padding-top: 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ===================== QUALITY ICONS (Relocated below H3) ===================== */
.quality-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.quality-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.quality-icon {
    color: var(--green-primary);
    width: 38px;
    height: 38px;
}

.quality-icon svg {
    width: 100%;
    height: 100%;
}

.quality-label {
    font-size: 14px;
    color: #3a3a3a;
    font-weight: 500;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: #fff;
    padding: 30px 0;
    border-top: 1px solid #e8eee0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 30px;
    align-items: start;
    padding-bottom: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.footer-logo .logo-icon {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--green-text);
    letter-spacing: -0.2px;
    line-height: 1.25;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 4px;
}

.footer-col-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.socials {
    display: flex;
    gap: 14px;
}

.socials a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green-text);
    transition: color .2s ease, transform .2s ease;
}

.socials a:hover {
    color: var(--green-primary);
    transform: translateY(-2px);
}

.socials svg {
    width: 22px;
    height: 22px;
}

.social-filled {
    color: var(--green-text);
}

.footer-bottom {
    border-top: 1px solid #e8eee0;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 10px;
}

.footer-copy {
    text-align: center;
    font-size: 13px;
    color: #6a6a6a;
}

.footer-copy p { margin: 0; }

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* -------- Tablet landscape (keep 4 cols, only collapse nav) -------- */
@media (max-width: 1024px) {
    .main-nav ul { gap: 22px; }
    .main-nav a { font-size: 14px; }
    .deco { display: none; }
}

/* -------- Tablet portrait -------- */
@media (max-width: 820px) {
    .main-nav {
        max-width: calc(100vw - 40px);
        overflow-x: auto;
        scrollbar-width: none;
    }
    .main-nav::-webkit-scrollbar { display: none; }

    .main-nav a { font-size: 13px; padding: 6px 12px; }

    .hero-title  { font-size: 44px; }
    .hero-subtitle { font-size: 28px; }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        text-align: left;
    }
}

/* -------- Mobile -------- */
@media (max-width: 600px) {
    .container { padding: 0 18px; }

    .logo-text { font-size: 15px; }
    .logo-icon { width: 30px; height: 30px; }

    .main-nav ul { gap: 10px 14px; }
    .main-nav a { font-size: 13px; }

    .btn-outline { padding: 8px 16px; font-size: 13px; }

    .hero { padding-top: 20px; }
    .hero-pre { font-size: 11px; }
    .hero-title { font-size: 24px; }
    .hero-subtitle { font-size: 16px; }
    .hero-desc { font-size: 12px; }
    .btn-primary { padding: 8px 18px; font-size: 13px; }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .card-title { font-size: 12px; min-height: auto; }

    .quality-grid { gap: 28px 34px; }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo { justify-content: center; }
    .socials { justify-content: center; }
    .footer-copy { text-align: center; }
}
