:root {
    --cream: #f2ede6;
    --bark: #2b1f14;
    --pine: #2d5016;
    --sage: #7a9e4e;
    --rust: #c0392b;
    --stone: #8c7b6b;
    --fog: #d4cfc8;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--bark);
    overflow-x: hidden;
}

/* -- NAVBAR -- */
.navbar-top {
    background: var(--cream);
    border-bottom: 1px solid var(--fog);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(43, 31, 20, 0.07);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: var(--bark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--cream);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--bark);
    letter-spacing: -0.5px;
}

.search-wrap {
    flex: 1;
    max-width: 520px;
    position: relative;
}

.search-wrap input {
    width: 100%;
    border: 1.5px solid var(--fog);
    background: var(--white);
    border-radius: 30px;
    padding: 10px 48px 10px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--bark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-wrap input:focus {
    border-color: var(--pine);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.12);
}

.search-wrap .search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--stone);
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.search-wrap .search-btn:hover {
    color: var(--pine);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.nav-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--bark);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-action-btn:hover {
    color: var(--pine);
}

.nav-action-btn i {
    font-size: 1.1rem;
}

.cart-badge {
    background: var(--rust);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -14px;
    margin-top: -15px;
}
.account-link {
    text-decoration: none !important;
    color: #fcfcfc;
    margin-right: 25px !important;
}

/* -- NAV LINKS BAR -- */
.nav-links-bar {
    background: var(--cream);
    border-top: 1px solid var(--fog);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.nav-links-bar ul {
    list-style: none;
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-links-bar ul li a {
    display: block;
    padding: 12px 14px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--bark);
    letter-spacing: 0.01em;
    position: relative;
    transition: color 0.2s;
}

.nav-links-bar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--pine);
    transform: scaleX(0);
    transition: transform 0.2s;
}

.nav-links-bar ul li a:hover {
    color: var(--pine);
}

.nav-links-bar ul li a:hover::after {
    transform: scaleX(1);
}

.nav-links-bar ul li a.deals {
    color: var(--rust);
    font-weight: 600;
}

.nav-links-bar ul li a.deals::after {
    background: var(--rust);
}

/* -- HERO -- */
.hero {
    position: relative;
    height: 88vh;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;


}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(43, 31, 20, 0.10) 0%, rgba(43, 31, 20, 0.55) 100%),
        url('https://osso.one/wp-content/uploads/2025/08/bell-nimbus-hero-shot.webp') center/cover no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 80px;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--sage);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 2px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: 'Poppins', serif;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    max-width: 680px;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: var(--white);
    color: var(--bark);
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-hero:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-outline-hero {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
}

/* -- CATEGORIES SECTION -- */
.categories-section {
    padding: 96px 40px;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sage);
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--bark);
    line-height: 1.15;
}

.section-header p {
    color: var(--stone);
    font-size: 1rem;
    margin-top: 12px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Category Cards */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.cat-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    background: var(--bark);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(43, 31, 20, 0.2);
}

.cat-card.featured {
    grid-row: span 1;
    aspect-ratio: auto;
}

.cat-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.cat-card:hover .cat-img {
    transform: scale(1.06);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(43, 31, 20, 0.82) 0%, rgba(43, 31, 20, 0.1) 55%);
}

.cat-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    z-index: 2;
}

.cat-tag {
    display: inline-block;
    background: var(--sage);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.cat-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 8px;
}

.cat-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 18px;
    line-height: 1.5;
}

.cat-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.cat-item-chip {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.cat-item-chip:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.5);
}

.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cream);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: gap 0.2s, color 0.2s;
}

.cat-link:hover {
    gap: 14px;
    color: white;
}

.cat-link i {
    font-size: 0.9rem;
}

/* Product count badge */
.cat-count {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--bark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

/* -- BOTTOM BANNER -- */
.bottom-banner {
    background: var(--bark);
    color: white;
    padding: 60px 40px;
    text-align: center;
}

.bottom-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

.bottom-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 28px;
}

.btn-deal {
    background: var(--rust);
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}

.btn-deal:hover {
    background: #a93226;
    transform: translateY(-2px);
    color: white;
}

/* -- ANIMATE IN -- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------
   FEATURED PRODUCTS SECTION
-------------------------------------- */
.featured-section {
    padding: 40px 20px;
    background: var(--cream);
}

.featured-header {
    padding-right: 40px;
    margin-bottom: 40px;
}

.featured-title {
    font-size: 1.5rem;
    color: #2b1f14;
    margin-bottom: 30px;
}

.featured-grid {
    display: grid;
    /* This creates 4 equal columns */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

.feat-card {
    background: #fcfcfc;
    border-radius: 8px;
    padding: 10px;
    overflow: hidden;
}

.feat-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    object-fit: cover;
    object-position: center;
}

.feat-img-wrap img {
    width: 100%;
    height: 100%;
    /* max-width: 80%; */
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.feat-body {
    text-align: left;
}

.feat-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2b1f14;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.feat-price {
    font-size: 0.95rem;
    font-weight: 400;
    color: #000;
}

/* --------------------------------------
   ESSENTIAL OUTDOOR GEAR SECTION
-------------------------------------- */
.essential-section {
    padding: 96px 40px;
    background: var(--white);
}

.essential-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}

.essential-text {
    position: sticky;
    top: 110px;
}

.essential-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--bark);
    line-height: 1.15;
    margin: 8px 0 16px;
}

.essential-desc {
    font-size: 0.95rem;
    color: var(--stone);
    line-height: 1.75;
    margin-bottom: 28px;
}

.essential-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pine);
    text-decoration: none;
    border-bottom: 1.5px solid var(--pine);
    padding-bottom: 2px;
    transition: gap 0.2s, color 0.2s;
}

.essential-cta:hover {
    gap: 14px;
    color: var(--bark);
    border-color: var(--bark);
}

.essential-cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ess-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--fog);
    transition: transform 0.28s, box-shadow 0.28s;
}

.ess-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(43, 31, 20, 0.11);
}

.ess-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.ess-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    background-color: #f5f3ef;
}

.ess-card:hover .ess-img img {
    transform: scale(1.05);
}

.ess-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43, 31, 20, 0.15) 0%, transparent 60%);
}

.ess-body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ess-meta {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 10px;
}

.ess-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bark);
    line-height: 1.3;
    margin-bottom: 10px;
}

.ess-sub {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.65;
    margin-bottom: 20px;
}

.ess-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--bark);
    text-decoration: none;
    border: 1.5px solid var(--fog);
    padding: 8px 18px;
    border-radius: 4px;
    align-self: flex-start;
    transition: background 0.2s, border-color 0.2s, gap 0.2s;
}

.ess-link:hover {
    background: var(--bark);
    border-color: var(--bark);
    color: white;
    gap: 12px;
}

/* --------------------------------------
   ADVICE & INSPIRATION SECTION
-------------------------------------- */
.advice-section {
    padding: 96px 40px;
    background: var(--white);
}

.advice-header {
    max-width: 1280px;
    margin: 0 auto 48px;
}

.advice-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--bark);
    margin-top: 8px;
}

.advice-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.advice-card {
    border-radius: 10px;
    overflow: hidden;
    background: var(--cream);
    border: 1px solid var(--fog);
    transition: transform 0.28s, box-shadow 0.28s;
    display: flex;
    flex-direction: column;
}

.advice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(43, 31, 20, 0.12);
}

.advice-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.advice-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.advice-card:hover .advice-img-wrap img {
    transform: scale(1.06);
}

.advice-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(43, 31, 20, 0.75);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    backdrop-filter: blur(4px);
}

.advice-body {
    padding: 22px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.advice-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bark);
    line-height: 1.35;
    margin-bottom: 10px;
}

.advice-sub {
    font-size: 0.85rem;
    color: var(--stone);
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

.advice-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bark);
    text-decoration: none;
    border: 1.5px solid var(--fog);
    padding: 8px 16px;
    border-radius: 4px;
    align-self: flex-start;
    transition: background 0.2s, border-color 0.2s, gap 0.2s;
}

.advice-link:hover {
    background: var(--bark);
    border-color: var(--bark);
    color: white;
    gap: 12px;
}

/* -- RESPONSIVE -- */
@media (max-width: 1024px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .essential-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .essential-text {
        position: static;
    }

    .advice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-inner {
        padding: 12px 20px;
    }

    .nav-actions .nav-action-btn span {
        display: none;
    }

    .nav-links-bar {
        padding: 0 20px;
        overflow-x: auto;
    }

    .nav-links-bar ul {
        flex-wrap: nowrap;
    }

    .hero-content {
        padding: 40px 24px;
    }

    .categories-section {
        padding: 60px 20px;
    }

    .cat-grid {
        grid-template-columns: 1fr;
    }

    .featured-section {
        padding: 60px 0 60px 20px;
    }

    .featured-header {
        padding-right: 20px;
    }

    .feat-card {
        width: 180px;
    }

    .essential-section {
        padding: 60px 20px;
    }

    .ess-card {
        grid-template-columns: 1fr;
    }

    .ess-img {
        height: 200px;
    }

    .advice-section {
        padding: 60px 20px;
    }

    .advice-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------
   TOP PRODUCTS SECTION
-------------------------------------- */
.top-products-section {
    padding: 72px 40px 80px;
    background: var(--white);
    border-top: 1px solid var(--fog);
}

.tp-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 36px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.tp-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--bark);
}

.tp-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--pine);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
    white-space: nowrap;
}

.tp-view-all:hover {
    gap: 10px;
    color: var(--pine);
}

.tp-scroll-wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.tp-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    scrollbar-width: none;
}

.tp-track::-webkit-scrollbar {
    display: none;
}

.tp-arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    background: var(--white);
    border: 1.5px solid var(--fog);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 12px rgba(43, 31, 20, 0.1);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    color: var(--bark);
    font-size: 1rem;
}

.tp-arrow:hover {
    background: var(--cream);
    border-color: var(--stone);
}

.tp-arrow-left {
    left: -20px;
}

.tp-arrow-right {
    right: -20px;
}

/* Product Card */
.tp-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--fog);
    transition: transform 0.25s, box-shadow 0.25s;
}

.tp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(43, 31, 20, 0.13);
}

.tp-img-wrap {
    position: relative;
    background: #f7f4f0;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tp-card:hover .tp-img-wrap img {
    transform: scale(1.05);
}

.tp-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--sage);
    color: white;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
}

.tp-badge.tp-badge-sale {
    background: var(--rust);
}

.tp-info {
    padding: 16px;
}

.tp-brand {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--stone);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 4px;
}

.tp-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--bark);
    line-height: 1.4;
    margin-bottom: 8px;
}

.tp-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
}

.tp-stars i {
    color: #e8a020;
    font-size: 0.72rem;
}

.tp-stars span {
    font-size: 0.72rem;
    color: var(--stone);
    margin-left: 4px;
}

.tp-price {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bark);
    margin-bottom: 12px;
}

.tp-add-btn {
    width: 100%;
    background: var(--bark);
    color: var(--cream);
    border: none;
    padding: 9px 0;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s, transform 0.15s;
}

.tp-add-btn:hover {
    background: var(--pine);
    transform: translateY(-1px);
}

/* --------------------------------------
   ESSENTIAL OUTDOOR GEAR
-------------------------------------- */
.essential-section {
    padding: 80px 40px;
    background: var(--cream);
}

.essential-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.essential-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--bark);
    margin-top: 8px;
}

.essential-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

/* Base essential card */
.ess-card {
    position: relative;
    /* This is crucial */
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    /* Ensures content fills the height */
    flex-direction: column;
    justify-content: flex-end;
    /* Pushes text to the bottom */
}

.ess-card-large {
    height: 480px;
    position: relative;
    /* Essential for containing the absolute image */
    overflow: hidden;
    border-radius: 10px;
}

.ess-col-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ess-card-sm {
    height: 230px;
}

.ess-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    /* Keeps the image behind text if you add it later */
}

.ess-card:hover .ess-img {
    transform: scale(1.05);
}



.ess-body {
    position: relative;
    /* Changed from absolute to relative */
    padding: 28px 28px;
    z-index: 2;
    /* Text stays on top */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.ess-tag {
    display: inline-block;
    background: var(--sage);
    color: white;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.ess-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 8px;
}

.ess-card-large .ess-name {
    font-size: 1.6rem;
}

.ess-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ess-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--bark);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, gap 0.2s, transform 0.15s;
}

.ess-btn:hover {
    background: var(--cream);
    gap: 12px;
    transform: translateY(-1px);
    color: var(--bark);
}

/* --------------------------------------
   HELPFUL ADVICE SECTION
-------------------------------------- */
.advice-section {
    padding: 80px 40px 96px;
    background: var(--white);
    border-top: 1px solid var(--fog);
}

.advice-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 40px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.advice-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--bark);
}

.advice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}

.advice-card {
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream);
    border: 1px solid var(--fog);
    transition: transform 0.25s, box-shadow 0.25s;
}

.advice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(43, 31, 20, 0.12);
}

.advice-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.advice-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.advice-card:hover .advice-img-wrap img {
    transform: scale(1.06);
}

.advice-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--bark);
    color: var(--cream);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}

.advice-body {
    padding: 22px 22px 24px;
}

.advice-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bark);
    line-height: 1.4;
    margin-bottom: 10px;
}

.advice-desc {
    font-size: 0.83rem;
    color: var(--stone);
    line-height: 1.6;
    margin-bottom: 18px;
}

.advice-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--bark);
    color: var(--bark);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, gap 0.2s;
}

.advice-link:hover {
    background: var(--bark);
    color: var(--cream);
    gap: 10px;
}

/* -- Responsive additions -- */
@media (max-width: 1024px) {
    .essential-grid {
        grid-template-columns: 1fr;
    }

    .ess-card-large {
        height: 360px;
    }

    .ess-col-right {
        flex-direction: row;
    }

    .ess-card-sm {
        flex: 1;
    }

    .advice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .top-products-section,
    .essential-section,
    .advice-section {
        padding: 56px 20px;
    }

    .tp-header,
    .essential-header,
    .advice-header {
        flex-direction: column;
        gap: 8px;
    }

    .ess-col-right {
        flex-direction: column;
    }

    .advice-grid {
        grid-template-columns: 1fr;
    }

    .tp-arrow {
        display: none;
    }
}
/* --------------------------------------
   PRODUCTS GRID SECTION (NEW DESIGN)
-------------------------------------- */
.products-section {
  padding: 72px 40px 80px;
  background: var(--cream);
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.products-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--bark);
  margin-top: 6px;
  margin-bottom: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.prod-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--fog);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(43,31,20,0.13);
  text-decoration: none;
}

.prod-img-wrap {
  position: relative;
  background: #f5f3ef;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.05);
}

.prod-swatches {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
}

.swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  display: inline-block;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.prod-info {
  padding: 14px 16px 18px;
}

.prod-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.3;
}

.prod-price {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--stone);
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .products-section { padding: 56px 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* --------------------------------------
   FOOTER
-------------------------------------- */
.site-footer {
  background: var(--bark);
  color: rgba(255,255,255,0.75);
  padding: 64px 40px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1.4fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-brand .brand-icon {
  background: rgba(255,255,255,0.12);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}

.footer-social-btn:hover {
  background: var(--sage);
  color: #fff;
}

.footer-place-img {
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  object-fit: cover;
  height: 180px;
  display: block;
  margin-bottom: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-contact-item i {
  font-size: 1rem;
  color: var(--sage);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links li a:hover { color: #fff; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .site-footer { padding: 48px 20px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------
   PRODUCT DETAIL PAGE
-------------------------------------- */
.pd-breadcrumb {
  padding: 14px 40px;
  font-size: 0.82rem;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border-bottom: 1px solid var(--fog);
}

.pd-breadcrumb a {
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}

.pd-breadcrumb a:hover { color: var(--bark); }
.pd-breadcrumb i { font-size: 0.65rem; }

.pd-section {
  background: #fff;
  padding: 48px 40px 64px;
}

.pd-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.pd-main-img {
  background: #f5f3ef;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pd-thumbs {
  display: flex;
  gap: 10px;
}

.pd-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--fog);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.active { border-color: var(--bark); }
.pd-thumb:hover { border-color: var(--stone); }

.pd-breadcrumb-inline {
  font-size: 0.78rem;
  color: var(--stone);
  margin-bottom: 16px;
}

.pd-breadcrumb-inline a { color: var(--stone); text-decoration: none; }
.pd-breadcrumb-inline span { color: var(--bark); }

.pd-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--bark);
  line-height: 1.15;
  margin-bottom: 12px;
}

.pd-subtitle {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 18px;
}

.pd-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 20px;
}

.pd-stars i { color: #e8a020; font-size: 0.9rem; }

.pd-rating-text {
  font-size: 0.82rem;
  color: var(--stone);
  margin-left: 6px;
}

.pd-price-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--fog);
}

.pd-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bark);
  display: block;
  margin-bottom: 6px;
}

.pd-installment { font-size: 0.8rem; color: var(--stone); }

.pd-option-block { margin-bottom: 24px; }

.pd-option-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pd-color-swatches { display: flex; gap: 10px; flex-wrap: wrap; }

.pd-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid transparent;
  outline: 2px solid transparent;
  cursor: pointer;
  transition: outline-color 0.2s, border-color 0.2s;
}

.pd-swatch.active, .pd-swatch:hover {
  border-color: #fff;
  outline-color: var(--bark);
}

.pd-desc-block { margin-bottom: 28px; }

.pd-desc-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--bark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.pd-desc-text { font-size: 0.9rem; color: var(--stone); line-height: 1.75; }

.pd-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  align-items: center;
}

.pd-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--fog);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.pd-qty button {
  width: 38px;
  height: 46px;
  background: var(--cream);
  border: none;
  font-size: 1.1rem;
  color: var(--bark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.pd-qty button:hover { background: var(--fog); }

.pd-qty span {
  min-width: 40px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bark);
}

.pd-add-btn {
  flex: 1;
  background: var(--bark);
  color: var(--cream);
  border: none;
  padding: 14px 24px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}

.pd-add-btn:hover {
  background: var(--pine);
  transform: translateY(-1px);
}

.pd-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--fog);
  padding-top: 24px;
}

.pd-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--stone);
}

.pd-perk i {
  font-size: 1.4rem;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}

.pd-perk strong {
  display: block;
  color: var(--bark);
  font-weight: 600;
  margin-bottom: 2px;
}

@media (max-width: 900px) {
  .pd-inner { grid-template-columns: 1fr; gap: 36px; }
  .pd-section { padding: 32px 20px 48px; }
  .pd-breadcrumb { padding: 12px 20px; }
}

@media (max-width: 640px) {
  .pd-thumbs { gap: 8px; }
  .pd-thumb { width: 64px; height: 64px; }
}
/* --------------------------------------
   NAV ACTIVE STATE
-------------------------------------- */
.nav-links-bar ul li a.nav-active {
  color: var(--pine);
  font-weight: 600;
}
.nav-links-bar ul li a.nav-active::after {
  transform: scaleX(1);
}

/* --------------------------------------
   CONTACT SPLIT SECTION (shared)
-------------------------------------- */
.contact-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  position: relative;
  margin-bottom: 30px;
}

.contact-split-bg {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.contact-split-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.contact-split-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(43,31,20,0.72) 0%, rgba(43,31,20,0.35) 100%);
  display: flex; align-items: flex-end;
  padding: 40px 48px;
}

.contact-split-brand { color: white; }

.contact-brand-small {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  display: block;
  margin-bottom: 2px;
}

.contact-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}

.contact-brand-sub {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  opacity: 0.85;
  margin-top: 2px;
}

.contact-split-form {
  background: var(--bark);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  display: block;
  margin-bottom: 10px;
}

.contact-form-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-perks {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.contact-perks li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}

.contact-perks li i {
  color: var(--rust);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-field-row {
  display: flex;
  gap: 12px;
}

.contact-field-half { flex-direction: row; }
.contact-field-half .contact-input { flex: 1; }

.contact-input {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: white;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.contact-input::placeholder { color: rgba(255,255,255,0.45); }

.contact-input:focus {
  border-color: var(--rust);
  background: rgba(255,255,255,0.14);
}

.contact-submit-btn {
  background: var(--rust);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
  text-transform: uppercase;
}

.contact-submit-btn:hover { background: #a93226; transform: translateY(-1px); }

/* --------------------------------------
   GALLERY PAGE
-------------------------------------- */
.gallery-hero {
  text-align: center;
  padding: 72px 40px 40px;
  background: var(--cream);
}

.gallery-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 14px;
}

.gallery-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--bark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.gallery-hero-title em {
  font-style: italic;
  font-weight: 700;
}

.gallery-hero-sub {
  color: var(--stone);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Filter tabs */
.gallery-filter-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 40px 40px;
  background: var(--cream);
  flex-wrap: wrap;
}

.gal-filter {
  background: transparent;
  border: 1.5px solid var(--fog);
  color: var(--stone);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.gal-filter:hover,
.gal-filter.active {
  background: var(--bark);
  border-color: var(--bark);
  color: white;
}

/* Masonry grid */
.gallery-grid-section {
  background: var(--cream);
  padding: 0 40px 80px;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.gal-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gal-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bark);
  transition: transform 0.28s, box-shadow 0.28s;
}

.gal-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(43,31,20,0.18); }

.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
  transition: transform 0.4s ease;
}

.gal-item:hover img { transform: scale(1.04); }

.gal-item--sm img { aspect-ratio: 16/9; }
.gal-item--half img { aspect-ratio: 1/1; }

/* Row of two half-images */
.gal-item-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,31,20,0.78) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px 18px 20px;
}

.gal-item:hover .gal-overlay { opacity: 1; }

.gal-meta { flex: 1; }

.gal-tag {
  display: inline-block;
  background: var(--sage);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 5px;
}

.gal-caption {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
  line-height: 1.4;
}

.gal-expand-btn {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  width: 34px; height: 34px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s;
  flex-shrink: 0;
  align-self: flex-end;
}

.gal-expand-btn:hover { background: rgba(255,255,255,0.35); }

/* Load more */
.gallery-load-more {
  text-align: center;
  margin-top: 48px;
}

.gallery-load-btn {
  background: transparent;
  border: 2px solid var(--bark);
  color: var(--bark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.gallery-load-btn:hover {
  background: var(--bark);
  color: white;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-backdrop {
  position: fixed; inset: 0;
  background: rgba(20,13,8,0.92);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.lightbox-backdrop.active { opacity: 1; pointer-events: all; }

.lightbox-img-wrap {
  position: relative; z-index: 2;
  max-width: 880px; max-height: 80vh;
  display: flex; flex-direction: column; align-items: center;
}

.lightbox-img-wrap img {
  max-width: 100%; max-height: 72vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.lightbox-caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  margin-top: 14px;
  text-align: center;
}

.lightbox-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  z-index: 10;
  transition: background 0.2s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.28); }

.lightbox-nav {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  z-index: 10;
  transition: background 0.2s;
  flex-shrink: 0;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.28); }
.lightbox-prev { margin-right: 20px; }
.lightbox-next { margin-left: 20px; }

/* --------------------------------------
   CONTACT PAGE � INFO CARDS
-------------------------------------- */
.contact-split-hero {
  min-height: 520px;
}

.contact-info-section {
  padding: 96px 40px;
  background: var(--cream);
  max-width: 1280px;
  margin: 0 auto;
}

.contact-info-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--bark);
  margin-top: 8px;
}

.contact-info-sub {
  color: var(--bark);
  font-size: 0.98rem;
  margin-top: 10px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--fog);
  border-radius: 10px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(43,31,20,0.1);
}

.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--bark);
  margin-bottom: 8px;
}

.contact-info-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bark);
}

.contact-info-card p {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.65;
  margin: 0;
}

.contact-info-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pine);
  text-decoration: none;
  margin-top: 6px;
  transition: gap 0.2s, color 0.2s;
}

.contact-info-link:hover { gap: 10px; color: var(--bark); }

/* -- FULL CONTACT FORM -- */
.contact-full-form-section {
  background: var(--white);
  padding: 96px 40px;
}

.contact-full-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-full-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--bark);
  line-height: 1.15;
  margin: 8px 0 16px;
}

.contact-full-desc {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-full-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
}

.contact-full-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.contact-full-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,31,20,0.65) 0%, transparent 55%);
}

.contact-full-img-tag {
  position: absolute; bottom: 18px; left: 18px;
  display: flex; align-items: center; gap: 8px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-full-img-tag i { color: #f0c040; }

.contact-full-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-full-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-full-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-full-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-full-input {
  border: 1.5px solid var(--fog);
  background: var(--cream);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--bark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.contact-full-input:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(45,80,22,0.1);
}

.contact-full-input::placeholder { color: var(--stone); }

.contact-full-select { appearance: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%238c7b6b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; cursor: pointer; }

.contact-full-textarea { resize: vertical; min-height: 130px; }

.contact-full-submit {
  background: var(--bark);
  color: white;
  border: none;
  padding: 15px 32px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.contact-full-submit:hover { background: var(--pine); transform: translateY(-1px); }

/* --------------------------------------
   RESPONSIVE � NEW SECTIONS
-------------------------------------- */
@media (max-width: 1024px) {
  .contact-info-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-full-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .contact-split-section { grid-template-columns: 1fr; }
  .contact-split-bg { min-height: 260px; }
  .contact-split-form { padding: 36px 24px; }
  .contact-perks { grid-template-columns: 1fr; }
  .contact-info-section { padding: 60px 20px; }
  .contact-info-cards { grid-template-columns: 1fr 1fr; }
  .gallery-grid-section { padding: 0 20px 60px; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .gallery-hero { padding: 48px 20px 28px; }
  .gallery-filter-wrap { padding: 0 20px 28px; }
  .contact-full-form-section { padding: 60px 20px; }
  .contact-full-row { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .gallery-masonry { grid-template-columns: 1fr; }
  .gal-item-row { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr; }
}