/* ================================================================
   POSTACI TARIM — Frontend Design System
   Earthy & Premium · Playfair Display + DM Sans
   Soil/Harvest/Wheat palette · Cinematic hero · Editorial cards
   ================================================================ */

/* ----------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------- */
:root {
    /* Postaci palette */
    --pt-soil:    #1b1208;
    --pt-earth:   #2d1f0e;
    --pt-bark:    #3e2c12;
    --pt-harvest: #c8882a;
    --pt-harvest-hover: #b87720;
    --pt-harvest-dark:  #a36b1a;
    --pt-wheat:   #e8c97a;
    --pt-sky:     #3d7a4e;
    --pt-leaf:    #52a666;
    --pt-mist:    #f5f2ec;
    --pt-paper:   #faf8f4;
    --pt-ink:     #1b1208;
    --pt-smoke:   #7a7060;
    --pt-border:  rgba(200, 136, 42, .18);

    --pt-r: 8px;
    --pt-r-lg: 16px;
    --pt-r-xl: 24px;
    --pt-r-pill: 9999px;

    --pt-font-serif: 'Playfair Display', 'Georgia', serif;
    --pt-font-sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --pt-shadow-sm: 0 2px 8px rgba(27, 18, 8, .06);
    --pt-shadow:    0 4px 20px rgba(27, 18, 8, .08);
    --pt-shadow-md: 0 12px 36px rgba(27, 18, 8, .12);
    --pt-shadow-lg: 0 20px 48px rgba(27, 18, 8, .14);
    --pt-shadow-glow: 0 8px 24px rgba(200, 136, 42, .35);

    /* Legacy aliases — keep old gn-* references working */
    --gn-primary: var(--pt-harvest);
    --gn-primary-hover: var(--pt-harvest-hover);
    --gn-primary-light: var(--pt-wheat);
    --gn-primary-dark: var(--pt-harvest-dark);
    --gn-primary-rgb: 200, 136, 42;

    --gn-dark: var(--pt-soil);
    --gn-dark-rgb: 27, 18, 8;
    --gn-dark-surface: var(--pt-earth);
    --gn-dark-border: rgba(255, 255, 255, .08);

    --gn-white: #ffffff;
    --gn-gray-50:  #faf8f4;
    --gn-gray-100: #f1ede4;
    --gn-gray-200: #e5dfd2;
    --gn-gray-300: #c9c0ad;
    --gn-gray-400: #9a8f78;
    --gn-gray-500: #7a7060;
    --gn-gray-600: #5a513f;
    --gn-gray-700: #3e2c12;
    --gn-gray-800: #2d1f0e;
    --gn-gray-900: #1b1208;

    --gn-success: #52a666;
    --gn-success-rgb: 82, 166, 102;
    --gn-warning: #c8882a;
    --gn-danger:  #c1502e;
    --gn-danger-rgb: 193, 80, 46;
    --gn-info:    #3d7a4e;

    --gn-font: var(--pt-font-sans);
    --gn-transition: .3s cubic-bezier(.4, 0, .2, 1);
    --gn-transition-fast: .15s ease;
    --gn-transition-slow: .5s cubic-bezier(.4, 0, .2, 1);
    --gn-radius: 12px;
    --gn-radius-lg: 16px;
    --gn-radius-xl: 24px;
    --gn-radius-full: 9999px;

    --gn-shadow-sm: var(--pt-shadow-sm);
    --gn-shadow:    var(--pt-shadow);
    --gn-shadow-md: var(--pt-shadow-md);
    --gn-shadow-lg: var(--pt-shadow-lg);
    --gn-shadow-xl: 0 24px 64px rgba(27, 18, 8, .18);
    --gn-shadow-glow: var(--pt-shadow-glow);

    --gn-z-header: 1000;
    --gn-z-dropdown: 1010;
    --gn-z-minicart: 1015;
    --gn-z-overlay: 1020;
    --gn-z-modal: 1030;
}

/* ----------------------------------------------------------
   2. BASE & RESET
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
    font-family: var(--pt-font-sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--pt-ink);
    background: var(--pt-paper);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--pt-font-serif);
    color: var(--pt-soil);
    font-weight: 700;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: color .2s; }
a:hover { color: var(--pt-harvest); }

img { max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--pt-harvest); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--pt-mist); }
::-webkit-scrollbar-thumb { background: var(--pt-harvest); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--pt-harvest-hover); }

/* ----------------------------------------------------------
   3. UTILITIES & BUTTONS
   ---------------------------------------------------------- */
.gn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .3px;
    padding: 13px 28px;
    border-radius: var(--pt-r);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    text-decoration: none;
    line-height: 1.2;
}

.gn-btn--sm  { padding: 9px 18px; font-size: 13px; }
.gn-btn--lg  { padding: 16px 36px; font-size: 15px; }
.gn-btn--pill { border-radius: var(--pt-r-pill); }

.gn-btn--primary {
    background: var(--pt-harvest);
    color: #fff;
    border-color: var(--pt-harvest);
}
.gn-btn--primary:hover {
    background: var(--pt-harvest-hover);
    border-color: var(--pt-harvest-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--pt-shadow-glow);
}

.gn-btn--outline {
    background: transparent;
    color: var(--pt-soil);
    border-color: var(--pt-soil);
}
.gn-btn--outline:hover {
    background: var(--pt-soil);
    color: #fff;
}

.gn-btn--ghost {
    background: transparent;
    color: var(--pt-soil);
}
.gn-btn--ghost:hover { background: rgba(27, 18, 8, .06); color: var(--pt-soil); }

.gn-btn--light {
    background: #fff;
    color: var(--pt-harvest);
    border-color: rgba(0, 0, 0, .06);
}
.gn-btn--light:hover { background: var(--pt-soil); color: #fff; border-color: var(--pt-soil); }

/* ----------------------------------------------------------
   4. TOPBAR
   ---------------------------------------------------------- */
.gn-topbar {
    background: var(--pt-soil);
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.gn-topbar__inner { min-height: 28px; }
.gn-topbar__link {
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
    letter-spacing: .3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.gn-topbar__link:hover { color: var(--pt-wheat); }
.gn-topbar__link i { color: var(--pt-harvest); }

.gn-topbar__center { color: rgba(255, 255, 255, .55); font-weight: 500; }
.gn-topbar__center i { color: var(--pt-harvest); }

.gn-topbar__socials a {
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    transition: color .2s;
}
.gn-topbar__socials a:hover { color: var(--pt-harvest); }

.gn-topbar__lang { position: relative; }
.gn-topbar__lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .8);
    padding: 4px 10px;
    border-radius: var(--pt-r);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.gn-topbar__lang-btn:hover { border-color: var(--pt-harvest); color: var(--pt-wheat); }
.gn-topbar__lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    min-width: 160px;
    background: #fff;
    border-radius: var(--pt-r);
    box-shadow: var(--pt-shadow-lg);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all .2s;
    z-index: var(--gn-z-dropdown);
}
.gn-topbar__lang:hover .gn-topbar__lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.gn-topbar__lang-dropdown a {
    display: flex; align-items: center;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--pt-soil);
    border-radius: 6px;
    text-decoration: none;
}
.gn-topbar__lang-dropdown a:hover,
.gn-topbar__lang-dropdown a.active { background: var(--pt-mist); color: var(--pt-harvest); }

/* ----------------------------------------------------------
   5. HEADER (sticky, transparent over hero, solid otherwise)
   ---------------------------------------------------------- */
.gn-header {
    position: sticky;
    top: 0;
    z-index: var(--gn-z-header);
    background: var(--pt-soil);
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
    padding: 18px 0;
}
.gn-header.is-scrolled,
.gn-header.scrolled,
.gn-header--solid {
    background: rgba(27, 18, 8, .97);
    box-shadow: 0 2px 30px rgba(0, 0, 0, .25);
    padding: 12px 0;
}

.gn-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gn-header__logo {
    font-family: var(--pt-font-serif);
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    letter-spacing: .2px;
}
.gn-header__logo::before {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--pt-harvest);
}
.gn-header__logo:hover { color: var(--pt-wheat); }

.gn-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.gn-nav__item { position: relative; }
.gn-nav__link {
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 6px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    position: relative;
}
.gn-nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--pt-harvest);
    transition: width .3s;
}
.gn-nav__link:hover { color: #fff; }
.gn-nav__link:hover::after { width: 100%; }
.gn-nav__arrow { font-size: 11px; opacity: .6; transition: transform .2s; }
.gn-nav__item--has-children:hover .gn-nav__arrow { transform: rotate(180deg); }

.gn-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 6px);
    margin-top: 14px;
    min-width: 240px;
    background: #fff;
    border-radius: var(--pt-r-lg);
    box-shadow: var(--pt-shadow-lg);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    z-index: var(--gn-z-dropdown);
}
.gn-nav__item--has-children:hover .gn-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.gn-nav__dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0; right: 0;
    height: 14px;
}
.gn-nav__dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--pt-soil);
    text-decoration: none;
}
.gn-nav__dropdown-link:hover { background: var(--pt-mist); color: var(--pt-harvest); }
.gn-nav__dropdown-link i { color: var(--pt-harvest); font-size: 14px; }

.gn-nav__dropdown-parent { position: relative; }
.gn-nav__sub-arrow { margin-left: auto; font-size: 11px; opacity: .5; }
.gn-nav__subdropdown {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: #fff;
    border-radius: var(--pt-r-lg);
    box-shadow: var(--pt-shadow-lg);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: all .2s;
}
.gn-nav__dropdown-parent:hover .gn-nav__subdropdown { opacity: 1; visibility: visible; transform: translateX(0); }

.gn-header__actions { gap: 4px; }
.gn-header__action {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, .9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    text-decoration: none;
    font-size: 15px;
}
.gn-header__action:hover {
    background: rgba(200, 136, 42, .18);
    color: var(--pt-wheat);
    border-color: var(--pt-border);
}
.gn-header__badge {
    position: absolute;
    top: 2px; right: 2px;
    background: var(--pt-harvest);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ----------------------------------------------------------
   6. SEARCH OVERLAY
   ---------------------------------------------------------- */
.gn-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(27, 18, 8, .92);
    backdrop-filter: blur(8px);
    z-index: var(--gn-z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 18vh;
}
.gn-search-overlay.is-open,
.gn-search-overlay.open { opacity: 1; visibility: visible; }
.gn-search-overlay__card {
    width: 90%;
    max-width: 720px;
    position: relative;
}
.gn-search-overlay__input-wrap {
    position: relative;
    background: #fff;
    border-radius: var(--pt-r-lg);
    box-shadow: var(--pt-shadow-lg);
}
.gn-search-overlay__input-wrap i {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    color: var(--pt-harvest);
    font-size: 20px;
}
.gn-search-overlay__input-wrap input {
    width: 100%;
    padding: 20px 24px 20px 60px;
    border: none;
    background: transparent;
    font-size: 18px;
    font-family: var(--pt-font-sans);
    border-radius: var(--pt-r-lg);
    outline: none;
    color: var(--pt-soil);
}
.gn-search-overlay__close {
    position: absolute;
    top: -56px;
    right: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gn-search-overlay__close:hover { background: var(--pt-harvest); border-color: var(--pt-harvest); }

/* ----------------------------------------------------------
   7. MINI-CART (sidebar)
   ---------------------------------------------------------- */
.gn-minicart {
    position: fixed;
    top: 0; right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: #fff;
    z-index: var(--gn-z-modal);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .15);
}
.gn-minicart.is-open,
.gn-minicart.open { transform: translateX(0); }
.gn-minicart__overlay {
    position: fixed;
    inset: 0;
    background: rgba(27, 18, 8, .55);
    z-index: var(--gn-z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.gn-minicart__overlay.is-open,
.gn-minicart__overlay.open { opacity: 1; visibility: visible; }
.gn-minicart__header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--pt-mist);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.gn-minicart__title { font-size: 18px; font-weight: 700; color: var(--pt-soil); margin: 0; }
.gn-minicart__close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--pt-mist);
    border: none;
    color: var(--pt-soil);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gn-minicart__close:hover { background: var(--pt-harvest); color: #fff; }
.gn-minicart__body {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px;
}

/* ----------------------------------------------------------
   8. FOOTER
   ---------------------------------------------------------- */
.gn-footer {
    background: var(--pt-soil);
    color: rgba(255, 255, 255, .65);
    padding: 64px 0 24px;
    position: relative;
    overflow: hidden;
}
.gn-footer::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 136, 42, .14) 0%, transparent 70%);
    pointer-events: none;
}

.gn-footer__logo {
    font-family: var(--pt-font-serif);
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    letter-spacing: .2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.gn-footer__logo::before {
    content: '';
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--pt-harvest);
}
.gn-footer__desc { font-size: 14px; color: rgba(255, 255, 255, .5); line-height: 1.8; }

.gn-footer__title {
    font-family: var(--pt-font-sans);
    font-size: 12px;
    font-weight: 700;
    color: var(--pt-wheat);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 20px;
}

.gn-footer__menu-link {
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    line-height: 1.6;
    display: inline-block;
    padding: 4px 0;
    text-decoration: none;
    transition: color .2s, transform .2s;
}
.gn-footer__menu-link:hover { color: var(--pt-wheat); transform: translateX(3px); }

.gn-footer__social-link {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    text-decoration: none;
}
.gn-footer__social-link:hover {
    background: var(--pt-harvest);
    color: #fff;
    transform: translateY(-3px);
}

.gn-footer__newsletter-input {
    background: rgba(255, 255, 255, .06) !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    color: #fff !important;
    border-radius: var(--pt-r) !important;
    padding: 11px 14px !important;
    font-size: 14px !important;
}
.gn-footer__newsletter-input::placeholder { color: rgba(255, 255, 255, .35); }
.gn-footer__newsletter-input:focus {
    background: rgba(255, 255, 255, .08) !important;
    border-color: var(--pt-harvest) !important;
    box-shadow: 0 0 0 3px rgba(200, 136, 42, .15) !important;
}
.gn-footer__newsletter-btn {
    background: var(--pt-harvest);
    color: #fff;
    border: none;
    padding: 11px 18px;
    border-radius: var(--pt-r);
    font-size: 15px;
}
.gn-footer__newsletter-btn:hover { background: var(--pt-harvest-hover); }

.gn-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
}
.gn-footer__copyright { color: rgba(255, 255, 255, .4); font-size: 12px; }
.gn-footer__payments i { color: rgba(255, 255, 255, .4); font-size: 18px; }

/* ----------------------------------------------------------
   9. BACK TO TOP
   ---------------------------------------------------------- */
.gn-back-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--pt-harvest);
    color: #fff;
    border: none;
    box-shadow: var(--pt-shadow-md);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 900;
    transition: all .2s;
    font-size: 16px;
}
.gn-back-top.is-visible { display: inline-flex; }
.gn-back-top:hover { background: var(--pt-harvest-hover); transform: translateY(-3px); }

/* ----------------------------------------------------------
   10. BREADCRUMB
   ---------------------------------------------------------- */
.gn-breadcrumb {
    background: var(--pt-mist);
    padding: 18px 0;
    border-bottom: 1px solid var(--pt-border);
}
.gn-breadcrumb .breadcrumb { margin: 0; font-size: 13px; }
.gn-breadcrumb .breadcrumb-item { color: var(--pt-smoke); }
.gn-breadcrumb .breadcrumb-item a { color: var(--pt-harvest); text-decoration: none; font-weight: 600; }
.gn-breadcrumb .breadcrumb-item a:hover { color: var(--pt-harvest-hover); }
.gn-breadcrumb .breadcrumb-item.active { color: var(--pt-soil); }

/* ----------------------------------------------------------
   11. SECTIONS (generic page wrappers)
   ---------------------------------------------------------- */
.gn-section { padding: 64px 0; }
.gn-section--padded { padding: 100px 0; }
.gn-section--alt { background: var(--pt-mist); }
.gn-section--dark { background: var(--pt-earth); color: rgba(255, 255, 255, .8); }
.gn-section--dark h1, .gn-section--dark h2, .gn-section--dark h3, .gn-section--dark h4 { color: #fff; }

.gn-section__title {
    font-size: clamp(28px, 3.6vw, 48px);
    color: var(--pt-soil);
    margin-bottom: 12px;
    line-height: 1.15;
}
.gn-section__title em { color: var(--pt-harvest); font-style: italic; }
.gn-section__subtitle {
    font-size: 16px;
    color: var(--pt-smoke);
    max-width: 640px;
    line-height: 1.8;
    margin-bottom: 0;
}

.gn-section-header { margin-bottom: 48px; }
.gn-section-header__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pt-sky);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.gn-section-header__tag::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--pt-sky);
}
.gn-section-header__title {
    font-size: clamp(28px, 3vw, 46px);
    color: var(--pt-soil);
    margin-bottom: 12px;
}
.gn-section-header__title em { color: var(--pt-sky); font-style: italic; }
.gn-section-header__subtitle {
    font-size: 15px;
    color: var(--pt-smoke);
    max-width: 540px;
    line-height: 1.8;
}

/* ----------------------------------------------------------
   12. HERO SLIDER (Postaci style)
   ---------------------------------------------------------- */
.pt-hero {
    position: relative;
    height: calc(100vh - 110px);
    min-height: 580px;
    overflow: hidden;
}
@media (max-width: 991px) { .pt-hero { height: calc(100vh - 70px); min-height: 520px; } }
.pt-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}
.pt-hero__slide.is-active { opacity: 1; }
.pt-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.pt-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(27, 18, 8, .88) 40%, rgba(27, 18, 8, .4) 100%);
}
.pt-hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: .25;
    pointer-events: none;
}
.pt-hero__slide--1 .pt-hero__bg { background-color: #0f2e14; background-image: linear-gradient(135deg, #0f2e14 0%, #1b3a1f 50%, #2d5a30 100%); }
.pt-hero__slide--2 .pt-hero__bg { background-color: #1a0e04; background-image: linear-gradient(135deg, #1a0e04 0%, #2d1a07 50%, #4a2d0a 100%); }
.pt-hero__slide--3 .pt-hero__bg { background-color: #061a0a; background-image: linear-gradient(135deg, #061a0a 0%, #0e2d15 50%, #1d4a22 100%); }

.pt-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px 0;
    width: 100%;
}
.pt-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 136, 42, .2);
    border: 1px solid rgba(200, 136, 42, .4);
    color: var(--pt-wheat);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
}
.pt-hero__tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--pt-harvest);
}
.pt-hero__title {
    font-size: clamp(36px, 5vw, 72px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, .3);
}
.pt-hero__title em { color: var(--pt-wheat); font-style: normal; }
.pt-hero__text {
    font-size: 17px;
    color: rgba(255, 255, 255, .72);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 36px;
}
.pt-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

.pt-hero__nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}
.pt-hero__dot {
    width: 8px; height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .3);
    border: none;
    cursor: pointer;
    transition: all .3s;
}
.pt-hero__dot.is-active { background: var(--pt-harvest); width: 28px; }
.pt-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, .12);
    border: 1.5px solid rgba(255, 255, 255, .2);
    color: #fff;
    width: 50px; height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all .25s;
}
.pt-hero__arrow:hover { background: var(--pt-harvest); border-color: var(--pt-harvest); }
.pt-hero__arrow--prev { left: 30px; }
.pt-hero__arrow--next { right: 30px; }

/* ----------------------------------------------------------
   13. TICKER
   ---------------------------------------------------------- */
.pt-ticker {
    background: var(--pt-harvest);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.pt-ticker__track {
    display: flex;
    gap: 0;
    animation: ptTicker 35s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.pt-ticker__item {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.pt-ticker__item::after { content: '✦'; opacity: .55; }
@keyframes ptTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ----------------------------------------------------------
   14. ABOUT STRIP
   ---------------------------------------------------------- */
.pt-about {
    background: var(--pt-soil);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.pt-about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 136, 42, .12) 0%, transparent 70%);
    pointer-events: none;
}
.pt-about__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 136, 42, .15);
    border: 1px solid rgba(200, 136, 42, .3);
    color: var(--pt-wheat);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
}
.pt-about__title {
    font-size: clamp(28px, 3vw, 44px);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}
.pt-about__title em { color: var(--pt-wheat); font-style: italic; }
.pt-about__text {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 1.9;
}
.pt-about__text strong { color: var(--pt-wheat); font-weight: 600; }
.pt-about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .06);
    border-radius: var(--pt-r);
    overflow: hidden;
    margin-top: 40px;
}
.pt-about__stat {
    background: rgba(255, 255, 255, .03);
    padding: 28px 22px;
    text-align: center;
    transition: background .3s;
}
.pt-about__stat:hover { background: rgba(200, 136, 42, .1); }
.pt-about__stat-num {
    font-family: var(--pt-font-serif);
    font-size: 36px;
    color: var(--pt-wheat);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}
.pt-about__stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ----------------------------------------------------------
   15. SERVICES GRID
   ---------------------------------------------------------- */
.pt-services { padding: 100px 0; background: var(--pt-paper); }
.pt-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.pt-service {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pt-service::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pt-harvest), var(--pt-leaf));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.pt-service:hover {
    transform: translateY(-6px);
    box-shadow: var(--pt-shadow-md);
    border-color: rgba(200, 136, 42, .2);
}
.pt-service:hover::before { transform: scaleX(1); }
.pt-service__icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}
.pt-service__icon--green { background: rgba(82, 166, 102, .12); color: var(--pt-leaf); }
.pt-service__icon--amber { background: rgba(200, 136, 42, .12); color: var(--pt-harvest); }
.pt-service__icon--earth { background: rgba(62, 44, 18, .08); color: var(--pt-bark); }
.pt-service h4 { font-size: 18px; color: var(--pt-soil); margin-bottom: 10px; }
.pt-service p { font-size: 14px; color: var(--pt-smoke); line-height: 1.75; }
.pt-service__tag {
    display: inline-block;
    background: rgba(82, 166, 102, .1);
    color: var(--pt-sky);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 16px;
}
.pt-service--featured {
    background: var(--pt-soil);
    border-color: transparent;
}
.pt-service--featured h4 { color: #fff; }
.pt-service--featured p { color: rgba(255, 255, 255, .65); }
.pt-service--featured .pt-service__tag {
    background: rgba(200, 136, 42, .2);
    color: var(--pt-wheat);
}

/* ----------------------------------------------------------
   16. PRODUCTS CAROUSEL
   ---------------------------------------------------------- */
.pt-products {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--pt-mist) 0%, #e8e4da 100%);
    overflow: hidden;
}
.pt-carousel__wrap { overflow: hidden; margin: 0 -15px; }
.pt-carousel__track {
    display: flex;
    gap: 20px;
    padding: 20px 30px 30px;
    cursor: grab;
    user-select: none;
    transition: transform .5s cubic-bezier(.25, .1, .25, 1);
}
.pt-carousel__track:active { cursor: grabbing; }
.pt-product-card {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .05);
    transition: transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}
.pt-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
    color: inherit;
}
.pt-product-card__image {
    width: 100%;
    height: 160px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--pt-mist);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pt-product-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.pt-product-card:hover .pt-product-card__image img { transform: scale(1.06); }
.pt-product-card__icon { font-size: 40px; margin-bottom: 14px; display: block; }
.pt-product-card h4 { font-size: 18px; color: var(--pt-soil); margin-bottom: 8px; }
.pt-product-card p { font-size: 13px; color: var(--pt-smoke); line-height: 1.7; margin: 0; }
.pt-product-card__price {
    margin-top: 14px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.pt-product-card__price-current {
    font-family: var(--pt-font-serif);
    font-weight: 800;
    color: var(--pt-harvest);
    font-size: 20px;
}
.pt-product-card__price-old {
    color: var(--pt-smoke);
    text-decoration: line-through;
    font-size: 13px;
}
.pt-product-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--pt-harvest);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
}

.pt-carousel__controls { display: flex; gap: 10px; margin-top: 32px; }
.pt-carousel__btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, .12);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--pt-soil);
    transition: all .2s;
}
.pt-carousel__btn:hover { background: var(--pt-harvest); border-color: var(--pt-harvest); color: #fff; }

/* ----------------------------------------------------------
   17. PROCESS
   ---------------------------------------------------------- */
.pt-process {
    padding: 100px 0;
    background: var(--pt-earth);
    color: rgba(255, 255, 255, .75);
}
.pt-process h1, .pt-process h2, .pt-process h3, .pt-process h4 { color: #fff; }
.pt-process .gn-section-header__tag { color: var(--pt-wheat); }
.pt-process .gn-section-header__tag::before { background: var(--pt-wheat); }
.pt-process .gn-section-header__title em { color: var(--pt-wheat); }

.pt-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
}
.pt-process__grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%; right: 12%;
    height: 1px;
    background: rgba(200, 136, 42, .25);
    z-index: 0;
}
.pt-process__step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}
.pt-process__num {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--pt-bark);
    border: 2px solid rgba(200, 136, 42, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--pt-wheat);
    transition: all .3s;
}
.pt-process__step:hover .pt-process__num {
    background: var(--pt-harvest);
    border-color: var(--pt-harvest);
    transform: scale(1.08);
    color: #fff;
}
.pt-process__step h4 { font-size: 17px; color: var(--pt-wheat); margin-bottom: 8px; }
.pt-process__step p { font-size: 13px; color: rgba(255, 255, 255, .55); line-height: 1.7; }

/* ----------------------------------------------------------
   18. CTA BAND
   ---------------------------------------------------------- */
.pt-cta {
    background: var(--pt-harvest);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.pt-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}
.pt-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .06);
}
.pt-cta__inner { position: relative; z-index: 1; }
.pt-cta h2 { font-size: clamp(26px, 3vw, 44px); color: #fff; margin-bottom: 12px; }
.pt-cta p { font-size: 16px; color: rgba(255, 255, 255, .85); margin-bottom: 28px; }

/* ----------------------------------------------------------
   19. CONTACT SECTION (used on home + /contact)
   ---------------------------------------------------------- */
.pt-contact { padding: 100px 0; background: var(--pt-paper); }
.pt-contact__card {
    background: var(--pt-soil);
    border-radius: 24px;
    padding: 50px;
    color: #fff;
    height: 100%;
}
.pt-contact__card h3 { font-size: 28px; color: #fff; margin-bottom: 8px; }
.pt-contact__card .sub { font-size: 15px; color: rgba(255, 255, 255, .55); margin-bottom: 36px; }
.pt-contact__row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}
.pt-contact__icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(200, 136, 42, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--pt-harvest);
    flex-shrink: 0;
}
.pt-contact__label {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pt-contact__value {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
    margin-top: 2px;
}
.pt-contact__value a { color: inherit; }
.pt-contact__value a:hover { color: var(--pt-wheat); }

.pt-form {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    height: 100%;
    box-shadow: var(--pt-shadow);
}
.pt-form h3 { font-size: 26px; color: var(--pt-soil); margin-bottom: 6px; }
.pt-form .sub { font-size: 15px; color: var(--pt-smoke); margin-bottom: 32px; }
.pt-form__field { margin-bottom: 18px; }
.pt-form__field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pt-smoke);
    margin-bottom: 6px;
}
.pt-form__field input,
.pt-form__field select,
.pt-form__field textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--pt-mist);
    border: 1.5px solid rgba(0, 0, 0, .06);
    border-radius: var(--pt-r);
    font-family: var(--pt-font-sans);
    font-size: 15px;
    color: var(--pt-soil);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.pt-form__field input:focus,
.pt-form__field select:focus,
.pt-form__field textarea:focus {
    border-color: var(--pt-harvest);
    box-shadow: 0 0 0 3px rgba(200, 136, 42, .12);
}
.pt-form__field textarea { resize: vertical; min-height: 120px; }
.pt-form__submit {
    width: 100%;
    background: var(--pt-harvest);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 15px;
    border: none;
    border-radius: var(--pt-r);
    transition: all .25s;
    font-family: var(--pt-font-sans);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}
.pt-form__submit:hover {
    background: var(--pt-harvest-dark);
    transform: translateY(-2px);
    box-shadow: var(--pt-shadow-glow);
}

/* ----------------------------------------------------------
   20. INNER PAGE HERO (page/blog/account)
   ---------------------------------------------------------- */
.gn-page-hero {
    background: var(--pt-earth);
    color: #fff;
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
}
.gn-page-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 136, 42, .15) 0%, transparent 70%);
    pointer-events: none;
}
.gn-page-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 136, 42, .2);
    border: 1px solid rgba(200, 136, 42, .35);
    color: var(--pt-wheat);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
}
.gn-page-hero__title {
    font-size: clamp(32px, 4.5vw, 56px);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
}
.gn-page-hero__title em { color: var(--pt-wheat); font-style: italic; }
.gn-page-hero__text {
    font-size: 16px;
    color: rgba(255, 255, 255, .65);
    max-width: 640px;
    line-height: 1.8;
}

/* ----------------------------------------------------------
   21. PRODUCT CARDS (grid product listing)
   ---------------------------------------------------------- */
.gn-product {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .05);
    transition: transform .3s, box-shadow .3s, border-color .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.gn-product:hover {
    transform: translateY(-4px);
    box-shadow: var(--pt-shadow-md);
    border-color: rgba(200, 136, 42, .2);
}
.gn-product__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--pt-mist);
}
.gn-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.gn-product:hover .gn-product__image img { transform: scale(1.06); }
.gn-product__badges {
    position: absolute;
    top: 12px; left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}
.gn-product__badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}
.gn-product__badge--featured { background: var(--pt-harvest); color: #fff; }
.gn-product__badge--sale     { background: var(--pt-soil); color: #fff; }
.gn-product__badge--new      { background: var(--pt-leaf); color: #fff; }

.gn-product__cart-form {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 2;
    transform: translateY(120%);
    transition: transform .35s ease;
}
.gn-product:hover .gn-product__cart-form { transform: translateY(0); }
.gn-product__add-cart {
    width: 100%;
    background: var(--pt-soil);
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background .2s;
}
.gn-product__add-cart:hover { background: var(--pt-harvest); }

.gn-product__body { padding: 18px 18px 22px; flex: 1; display: flex; flex-direction: column; }
.gn-product__title {
    font-family: var(--pt-font-serif);
    font-size: 16px;
    color: var(--pt-soil);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gn-product__title a { color: inherit; text-decoration: none; }
.gn-product__title a:hover { color: var(--pt-harvest); }
.gn-product__price { margin-top: auto; display: flex; align-items: baseline; gap: 8px; }
.gn-product__price-current {
    font-family: var(--pt-font-serif);
    font-weight: 800;
    color: var(--pt-harvest);
    font-size: 18px;
}
.gn-product__price-old {
    color: var(--pt-smoke);
    text-decoration: line-through;
    font-size: 13px;
}

/* ----------------------------------------------------------
   22. BENTO GRID (legacy from old home)
   ---------------------------------------------------------- */
.gn-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}
.gn-bento__item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: var(--pt-mist);
    display: flex;
    align-items: flex-end;
    color: #fff;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
}
.gn-bento__item:hover { transform: translateY(-4px); box-shadow: var(--pt-shadow-md); color: #fff; }
.gn-bento__item--lg { grid-column: span 2; grid-row: span 2; }
.gn-bento__item--md { grid-row: span 1; }
.gn-bento__img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.gn-bento__item:hover .gn-bento__img { transform: scale(1.06); }
.gn-bento__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27, 18, 8, 0) 30%, rgba(27, 18, 8, .85) 100%);
}
.gn-bento__content { position: relative; padding: 22px; z-index: 2; }
.gn-bento__name {
    font-family: var(--pt-font-serif);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.gn-bento__count {
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ----------------------------------------------------------
   23. BLOG CARDS
   ---------------------------------------------------------- */
.gn-blog-card--light {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .05);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.gn-blog-card--light:hover { transform: translateY(-4px); box-shadow: var(--pt-shadow-md); }
.gn-blog-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--pt-mist);
}
.gn-blog-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.gn-blog-card--light:hover .gn-blog-card__image img { transform: scale(1.06); }
.gn-blog-card__category {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(200, 136, 42, .9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.gn-blog-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.gn-blog-card__meta {
    font-size: 12px;
    color: var(--pt-smoke);
    margin-bottom: 10px;
}
.gn-blog-card__title {
    font-family: var(--pt-font-serif);
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.35;
}
.gn-blog-card__title a { color: var(--pt-soil); text-decoration: none; }
.gn-blog-card__title a:hover { color: var(--pt-harvest); }
.gn-blog-card__excerpt {
    font-size: 14px;
    color: var(--pt-smoke);
    line-height: 1.7;
    margin-bottom: 14px;
}
.gn-blog-card__read-more {
    margin-top: auto;
    color: var(--pt-harvest);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.gn-blog-card__read-more:hover { color: var(--pt-harvest-hover); gap: 8px; }

.gn-blog-dark {
    background: var(--pt-earth);
    padding: 100px 0;
}
.gn-blog-dark .gn-section-header__title { color: #fff; }
.gn-blog-dark .gn-section-header__title em { color: var(--pt-wheat); }
.gn-blog-dark .gn-section-header__subtitle { color: rgba(255, 255, 255, .55); }
.gn-blog-dark .gn-section-header__tag { color: var(--pt-wheat); }
.gn-blog-dark .gn-section-header__tag::before { background: var(--pt-wheat); }

/* ----------------------------------------------------------
   24. TRUST BAR
   ---------------------------------------------------------- */
.gn-trust {
    background: var(--pt-paper);
    border-top: 1px solid var(--pt-border);
}
.gn-trust i { color: var(--pt-harvest) !important; }
.gn-trust .fw-semibold { color: var(--pt-soil); }
.gn-trust .text-muted { color: var(--pt-smoke) !important; }

/* ----------------------------------------------------------
   25. CONTACT INFO CARDS
   ---------------------------------------------------------- */
.gn-contact__info-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 16px;
    padding: 30px 24px;
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}
.gn-contact__info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pt-shadow-md);
    border-color: rgba(200, 136, 42, .2);
}
.gn-contact__info-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(200, 136, 42, .12);
    color: var(--pt-harvest);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.gn-contact__info-title { font-size: 17px; color: var(--pt-soil); margin-bottom: 6px; }
.gn-contact__info-text { font-size: 14px; color: var(--pt-smoke); margin: 0; line-height: 1.6; }
.gn-contact__info-text a { color: var(--pt-harvest); }
.gn-contact__info-text a:hover { color: var(--pt-harvest-hover); }

/* ----------------------------------------------------------
   26. FORMS (Bootstrap overrides for non-pt-form contexts)
   ---------------------------------------------------------- */
.form-control, .form-select {
    border: 1.5px solid rgba(0, 0, 0, .08);
    background: var(--pt-mist);
    color: var(--pt-soil);
    border-radius: var(--pt-r);
    padding: 11px 14px;
    font-size: 14px;
    font-family: var(--pt-font-sans);
}
.form-control:focus, .form-select:focus {
    border-color: var(--pt-harvest);
    box-shadow: 0 0 0 3px rgba(200, 136, 42, .12);
    background: #fff;
}
.form-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--pt-smoke);
}

.btn-primary, .btn.btn-primary {
    background: var(--pt-harvest);
    border-color: var(--pt-harvest);
}
.btn-primary:hover, .btn.btn-primary:hover {
    background: var(--pt-harvest-hover);
    border-color: var(--pt-harvest-hover);
}

/* ----------------------------------------------------------
   27. MOBILE MENU & MISC
   ---------------------------------------------------------- */
.gn-mobile-menu { background: var(--pt-soil) !important; color: #fff; }
.gn-mobile-menu .gn-header__logo { color: #fff; }
.gn-mobile-menu__close {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
    width: 38px; height: 38px;
    border-radius: 50%;
}
.gn-mobile-menu__header {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.gn-mobile-menu__body { padding: 22px; }
.gn-mobile-menu__search-wrap {
    position: relative;
}
.gn-mobile-menu__search-wrap i {
    position: absolute;
    top: 50%; left: 14px;
    transform: translateY(-50%);
    color: var(--pt-harvest);
}
.gn-mobile-menu__search-wrap input {
    width: 100%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    padding: 10px 14px 10px 40px;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
}
.gn-mobile-menu__search-wrap input::placeholder { color: rgba(255, 255, 255, .45); }
.gn-mobile-menu__nav-link {
    display: block;
    color: rgba(255, 255, 255, .85);
    padding: 12px 0;
    font-family: var(--pt-font-serif);
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    text-decoration: none;
}
.gn-mobile-menu__nav-link:hover { color: var(--pt-wheat); }
.gn-mobile-menu__expand {
    width: 32px; height: 32px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
}
.gn-mobile-menu__sub-link {
    display: block;
    color: rgba(255, 255, 255, .65);
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 6px;
    text-decoration: none;
}
.gn-mobile-menu__sub-link:hover { background: rgba(200, 136, 42, .12); color: var(--pt-wheat); }
.gn-mobile-menu__footer {
    padding: 18px 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.gn-mobile-menu__lang {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-decoration: none;
}
.gn-mobile-menu__lang.active { background: var(--pt-harvest); border-color: var(--pt-harvest); }
.gn-mobile-menu__contact { display: flex; flex-direction: column; gap: 8px; }
.gn-mobile-menu__contact a { color: rgba(255, 255, 255, .65); font-size: 13px; text-decoration: none; }
.gn-mobile-menu__contact a:hover { color: var(--pt-wheat); }

/* ----------------------------------------------------------
   28. FADE-UP ANIMATION
   ---------------------------------------------------------- */
.gn-animate, .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.gn-animate--visible,
.gn-animate.is-visible,
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------------
   29. RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 991px) {
    .gn-nav { display: none; }
    .pt-services__grid { grid-template-columns: repeat(2, 1fr); }
    .pt-process__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .pt-process__grid::before { display: none; }
    .pt-contact__card, .pt-form { padding: 36px 30px; }
    .gn-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gn-bento__item--lg { grid-column: span 2; }
}
@media (max-width: 767px) {
    .pt-hero { min-height: 580px; }
    .pt-hero__arrow { display: none; }
    .pt-hero__content { padding-top: 60px; }
    .pt-services__grid { grid-template-columns: 1fr; }
    .pt-process__grid { grid-template-columns: 1fr; }
    .pt-about { padding: 60px 0; }
    .pt-services, .pt-products, .pt-process, .pt-cta, .pt-contact { padding: 60px 0; }
    .gn-section--padded { padding: 60px 0; }
    .pt-form, .pt-contact__card { padding: 32px 24px; border-radius: 18px; }
    .gn-page-hero { padding: 56px 0 44px; }
    .gn-bento { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gn-bento__item--lg { grid-column: span 1; }
}
@media (max-width: 480px) {
    .pt-about__stats { grid-template-columns: 1fr; }
    .pt-product-card { flex: 0 0 240px; }
}
