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

:root {
    --brown: #754c29;
    --brown-dark: #5a3a1f;
    --brown-light: #9c6b45;
    --cream: #faf6f0;
    --warm: #f2ebe0;
    --charcoal: #1e1a16;
    --mid: #7a6f65;
    --border: #e0d8cc;
    --white: #ffffff;
    --gold: #c49a4a;
    --topbar-h: 38px;
    --nav-h: 76px;
    --header-h: 114px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
}

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

img {
    display: block;
    max-width: 100%;
}

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: var(--header-h);
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem 6rem 5rem;
    animation: fadeUp .9s ease both;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: 13px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 1.8rem;
}

.hero-tag::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: var(--brown);
}

.hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: 51px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 1.8rem;
}

.hero-h1 em {
    color: var(--brown);
    font-style: italic;
}

.hero-p {
    font-size: 1rem;
    line-height: 1.88;
    color: var(--mid);
    max-width: 440px;
    margin-bottom: 2.8rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brown);
}

.hero-stat-label {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: .2rem;
}

.hero-right {
    position: relative;
    overflow: hidden;
    background: var(--warm);
}

.hero-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: zoomIn 1.2s ease both .3s;
}

.hero-badge {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    background: var(--brown);
    color: #fff;
    padding: 1.4rem 1.8rem;
    text-align: center;
}

.hero-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.hero-badge-text {
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .85;
    margin-top: .3rem;
}

@media(max-width:1100px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        min-height: 55vw;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media(max-width:650px) {
    .hero {
        padding-top: var(--nav-h);
    }
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--brown);
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3.5rem;
    transition: transform .35s ease;
}

.topbar.hidden {
    transform: translateY(-100%);
}

.tb-left {
    display: flex;
    align-items: center;
    gap: 0;
}

.tb-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 12.5px;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .88);
    padding: 0 1.4rem;
    height: var(--topbar-h);
}

.tb-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.tb-item svg {
    width: 13px;
    height: 13px;
    fill: rgba(255, 255, 255, .7);
    flex-shrink: 0;
}

.tb-item a {
    color: rgba(255, 255, 255, .88);
    transition: color .2s;
}

.tb-item a:hover {
    color: #fff;
}

.tb-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.tb-soc {
    width: 34px;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .75);
    font-size: 15px;
    font-weight: 700;
    transition: all .2s;
}

.tb-soc:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3.5rem;
    transition: top .35s ease, box-shadow .3s, background .3s;
}

.navbar.scrolled {
    background: #fff;
    box-shadow: 0 4px 30px rgba(117, 76, 41, .1);
}

.navbar.tb-gone {
    top: 0;
}

/* LOGO */
.nav-logo {
    display: flex;
    align-items: center;
    gap: .85rem;
    flex-shrink: 0;
}

.nav-logo img {
    width: 250px;
}

.nav-logo-svg {
    width: 46px;
    height: 46px;
}

.nav-logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: .03em;
}

.nav-logo-since {
    font-size: .6rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 3px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links a {
    display: block;
    padding: .5rem 1.15rem;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
    transition: color .25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 1.15rem;
    right: 1.15rem;
    height: 2px;
    background: var(--brown);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brown);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

/* NAV RIGHT */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-shrink: 0;
}

.nav-phone-wrap {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    font-weight: 500;
    color: var(--mid);
}

.nav-phone-wrap svg {
    width: 14px;
    height: 14px;
    fill: var(--brown);
}

.nav-cta {
    background: var(--brown);
    color: #fff;
    padding: .62rem 1.6rem;
    font-family: 'Jost', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 2px solid var(--brown);
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--brown-dark);
    border-color: var(--brown-dark);
    transform: translateY(-1px);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: 1px solid var(--border);
    padding: 9px;
    transition: border-color .2s;
}

.hamburger:hover {
    border-color: var(--brown);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    transition: transform .35s ease, opacity .25s, background .2s;
    transform-origin: center;
}

.hamburger span:nth-child(2) {
    margin: 5px 0;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--brown);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--brown);
}

/* MOBILE MENU */
.mob-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--brown);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, top .35s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}

.mob-menu.open {
    max-height: 450px;
}

.mob-menu.tb-gone {
    top: var(--nav-h);
}

.mob-inner {
    padding: 1rem 2rem 1.5rem;
}

.mob-inner a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 0;
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--charcoal);
    border-bottom: 1px solid var(--border);
    transition: color .2s, padding-left .2s;
}

.mob-inner a:last-of-type {
    border-bottom: none;
}

.mob-inner a:hover,
.mob-inner a.active {
    color: var(--brown);
    padding-left: .5rem;
}

.mob-inner a .arr {
    font-size: .7rem;
    color: var(--mid);
}

.mob-contact-row {
    display: flex;
    gap: 1.5rem;
    padding: .8rem 0 0;
    flex-wrap: wrap;
}

.mob-contact-row a {
    border: none !important;
    padding: .3rem 0 !important;
    font-size: .8rem;
    color: var(--mid);
    letter-spacing: .04em;
    text-transform: none !important;
}

.mob-cta-btn {
    display: block;
    text-align: center;
    margin-top: 1.2rem;
    background: var(--brown);
    color: #fff;
    padding: 20px .85rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: background .25s;
    border-bottom: none !important;
}

.mob-cta-btn:hover {
    background: var(--brown-dark) !important;
    padding-left: 0 !important;
}

/* OVERLAY */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(30, 26, 22, .45);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.nav-overlay.show {
    opacity: 1;
    pointer-events: all;
}

/* ══════════════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════════════ */
.scroll-progress {
    position: fixed;
    top: var(--header-h);
    left: 0;
    z-index: 1002;
    height: 3px;
    background: var(--brown);
    width: 0%;
    transition: width .08s linear, top .35s ease;
}

.scroll-progress.tb-gone {
    top: var(--nav-h);
}

/* ══════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════ */
.back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    width: 44px;
    height: 44px;
    background: var(--brown);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .3s, transform .3s;
}

.back-top.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.back-top:hover {
    background: var(--brown-dark);
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
    padding-top: var(--header-h);
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.ph-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.3);
}

.ph-content {
    position: relative;
    padding: 3rem 2rem;
}

.breadcrumb {
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: rgb(255 255 255 / 88%);
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}

.page-hero .ph-sub {
    font-size: .95rem;
    color: rgba(255, 255, 255, .7);
    margin-top: .8rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ══════════════════════════════════════
   COMMON SECTION ELEMENTS
══════════════════════════════════════ */
.section-tag {
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: .7rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--brown);
}

.section-tag.center {
    justify-content: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1.4rem;
}

.section-title em {
    color: var(--brown);
    font-style: italic;
}

/* BUTTONS */
.btn-fill {
    background: var(--brown);
    color: #fff;
    padding: .9rem 2.2rem;
    border: 2px solid var(--brown);
    font-family: 'Jost', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s;
    display: inline-block;
}

.btn-fill:hover {
    background: var(--brown-dark);
    border-color: var(--brown-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--brown);
    padding: .9rem 2.2rem;
    border: 2px solid var(--brown);
    font-family: 'Jost', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--brown);
    color: #fff;
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--brown);
    padding: .9rem 2.2rem;
    border: 2px solid #fff;
    font-family: 'Jost', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s;
    display: inline-block;
    white-space: nowrap;
}

.btn-light:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

.d3 {
    transition-delay: .3s;
}

.d4 {
    transition-delay: .4s;
}

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-bar {
    background: var(--brown);
    padding: .7rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

.marquee-inner span {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .88);
    margin: 0 1.8rem;
}

.marquee-inner .sep {
    color: var(--gold);
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ══════════════════════════════════════
   WHY US CARDS
══════════════════════════════════════ */
.why {
    /* padding: 6rem 5rem; */
    background: var(--white);
}
/* Base container */
.container {
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Small devices (≥576px) */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

/* Extra large devices (≥1200px) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* XXL devices (≥1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    padding: 2.5rem 1.8rem;
    border: 1px solid var(--border);
    transition: border-color .3s, transform .3s, box-shadow .3s;
}

.why-card:hover {
    border-color: var(--brown);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(117, 76, 41, .12);
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .6rem;
    color: #7e4a26;
}
.py-60{
    padding: 60px 0;
}
.why-desc {
    font-size: .88rem;
    line-height: 1.72;
    color: var(--mid);
}

.prod-slider-section {
    /* padding: 6rem 0 6rem; */
    background: var(--cream);
}

.prod-slider-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 5rem;
    margin-bottom: 3rem;
}

.view-all-link {
    font-size: .76rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brown);
    border-bottom: 1px solid var(--brown);
    padding-bottom: 2px;
    transition: opacity .2s;
}

.view-all-link:hover {
    opacity: .65;
}

/* slider track */
.slider-wrap {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}

.slide-card {
    flex: 0 0 calc(33.333% - 1.34rem);
    margin-right: 2rem;
    background: var(--white);
    overflow: hidden;
    transition: box-shadow .3s, transform .3s;
}

.slide-card:hover {
    box-shadow: 0 16px 50px rgba(117, 76, 41, .13);
    transform: translateY(-4px);
}

.slide-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.slide-img img {
    width: 100%;
    height: 293px;
    /* object-fit: cover; */
    transition: transform .6s;
}

.slide-card:hover .slide-img img {
    transform: scale(1.06);
}

.slide-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--brown);
    color: #fff;
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .28rem .75rem;
}

.slide-label.sale {
    background: #b8604a;
}

.slide-info {
    padding: 1.4rem 1.5rem;
}

.slide-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .3rem;
}

.slide-sub {
    font-size: .76rem;
    color: var(--mid);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.slide-price {
    font-size: .98rem;
    font-weight: 600;
    color: var(--brown);
}

.slide-price del {
    font-size: .82rem;
    color: var(--mid);
    font-weight: 400;
    margin-left: .5rem;
}

/* Slider controls */
.slider-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem 5rem 0;
    justify-content: center;
}

.slider-btn {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all .25s;
}

.slider-btn:hover {
    background: var(--brown);
    border-color: var(--brown);
    color: #fff;
}

.slider-dots {
    display: flex;
    gap: .5rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all .3s;
}

.slider-dot.active {
    background: var(--brown);
    width: 24px;
    border-radius: 4px;
}

/* ══════════════════════════════════════
   MID BANNER
══════════════════════════════════════ */
.mid-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mid-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    filter: brightness(.4);
}

.mid-banner-content {
    position: relative;
    color: #fff;
    padding: 2rem;
}

.mid-banner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.mid-banner-content p {
    font-size: 1rem;
    opacity: .85;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi {
    /* padding: 6rem 5rem; */
    background: var(--warm);
}

.testi-head {
    text-align: center;
    margin-bottom: 3rem;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testi-card {
    background: var(--white);
    padding: 2.5rem;
    border-bottom: 3px solid var(--border);
    transition: border-color .3s, transform .3s;
}

.testi-card:hover {
    border-bottom-color: var(--brown);
    transform: translateY(-4px);
}

.testi-stars {
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-size: .9rem;
}

.testi-q {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.78;
    color: var(--charcoal);
    margin-bottom: 1.4rem;
}

.testi-name {
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brown);
}

.testi-loc {
    font-size: .74rem;
    color: var(--mid);
    margin-top: .2rem;
}

/* ══════════════════════════════════════
   CTA STRIP
══════════════════════════════════════ */
.cta-strip {
    background: var(--brown);
    padding: 4rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-strip h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    max-width: 520px;
}

.cta-strip p {
    color: rgba(255, 255, 255, .75);
    font-size: .9rem;
    margin-top: .5rem;
}

/* ══════════════════════════════════════
   ABOUT PAGE — STORY
══════════════════════════════════════ */
.story {
    padding: 7rem 5rem;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-img-wrap {
    position: relative;
}

.story-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.story-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 190px;
    height: 190px;
    background: var(--brown);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 1.4rem;
}

.story-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
}

.story-badge-text {
    font-size: .64rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .85;
    margin-top: .4rem;
}

.story-text {
    font-size: .94rem;
    line-height: 1.9;
    color: var(--mid);
    margin-bottom: 1.1rem;
}

.story-check {
    list-style: none;
    margin: 1.4rem 0 2rem;
}

.story-check li {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .9rem;
    margin-bottom: .65rem;
    color: var(--charcoal);
}

.story-check li::before {
    content: '✓';
    color: var(--brown);
    font-weight: 700;
}

.story-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* MISSION */
.mission {
    padding: 6rem 5rem;
    background: var(--cream);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: var(--white);
    padding: 2.8rem 2rem;
    text-align: center;
    border-top: 3px solid var(--border);
    transition: border-color .3s, transform .3s, box-shadow .3s;
}

.mission-card:hover {
    border-top-color: var(--brown);
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(117, 76, 41, .12);
}

.mission-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.mission-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .65rem;
}

.mission-text {
    font-size: .87rem;
    line-height: 1.75;
    color: var(--mid);
}

/* STATS */
.stats-strip {
    background: var(--brown);
    padding: 4rem 5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-line {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, .25);
    margin: 1rem auto;
}

.stat-label {
    font-size: .74rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
}

/* TIMELINE */
.timeline {
    padding: 6rem 5rem;
    background: var(--warm);
}

.tl-wrap {
    margin-top: 3.5rem;
    position: relative;
}

.tl-wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.tl-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: start;
    margin-bottom: 3.5rem;
}

.tl-left {
    padding-right: 3rem;
    text-align: right;
}

.tl-right {
    padding-left: 3rem;
}

.tl-center {
    display: flex;
    justify-content: center;
    padding-top: .4rem;
}

.tl-dot {
    width: 18px;
    height: 18px;
    background: var(--brown);
    border-radius: 50%;
    border: 3px solid var(--warm);
    box-shadow: 0 0 0 3px var(--brown);
    flex-shrink: 0;
}

.tl-year {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brown);
    opacity: .3;
    line-height: 1;
    margin-bottom: .4rem;
}

.tl-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: .5rem;
}

.tl-text {
    font-size: .87rem;
    line-height: 1.75;
    color: var(--mid);
}

.tl-item:nth-child(even) .tl-left {
    order: 3;
    text-align: left;
    padding-right: 0;
    padding-left: 3rem;
}

.tl-item:nth-child(even) .tl-center {
    order: 2;
}

.tl-item:nth-child(even) .tl-right {
    order: 1;
    text-align: right;
    padding-left: 0;
    padding-right: 3rem;
}

/* TEAM */
.team {
    padding: 6rem 5rem;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    text-align: center;
}

.team-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 1.3rem;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
    filter: grayscale(12%);
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.05);
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
}

.team-role {
    font-size: .74rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brown);
    margin-top: .3rem;
}

.team-exp {
    font-size: .8rem;
    color: var(--mid);
    margin-top: .2rem;
}

/* CTA BANNER */
.cta-banner {
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.3);
}

.cta-content {
    position: relative;
    color: #fff;
    padding: 3rem 2rem;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: .95rem;
    opacity: .8;
    max-width: 480px;
    margin: 0 auto 2rem;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════════ */
.products-section {
    padding: 5rem 5rem;
    background: var(--cream);
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: .55rem 1.4rem;
    border: 1.5px solid var(--border);
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--mid);
    cursor: pointer;
    transition: all .25s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--brown);
    border-color: var(--brown);
    color: #fff;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.prod-card {
    background: var(--white);
    overflow: hidden;
    transition: box-shadow .3s, transform .3s;
}

.prod-card:hover {
    box-shadow: 0 16px 50px rgba(117, 76, 41, .13);
    transform: translateY(-4px);
}

.prod-img {
    position: relative;
    overflow: hidden;
    /* aspect-ratio: 1/1; */
}

.prod-img img {
    width: 100%;
    min-height: 293px;
    object-fit: cover;
    transition: transform .6s;
}

.prod-card:hover .prod-img img {
    transform: scale(1.06);
}

.prod-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--brown);
    color: #fff;
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .28rem .75rem;
}

.prod-label.sale {
    background: #b8604a;
}

.prod-enquire {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: var(--brown);
    color: #fff;
    text-align: center;
    padding: .75rem;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: bottom .3s;
    cursor: pointer;
}

.prod-card:hover .prod-enquire {
    bottom: 0;
}

.prod-info {
    padding: 1.5rem;
}

.prod-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .3rem;
}

.prod-sub {
    font-size: .76rem;
    color: var(--mid);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.prod-price {
    font-size: .98rem;
    font-weight: 600;
    color: var(--brown);
}

.prod-price del {
    font-size: .82rem;
    color: var(--mid);
    font-weight: 400;
    margin-left: .5rem;
}

.process {
    padding: 6rem 5rem;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
    transition: border-color .3s, transform .3s;
}

.process-step:hover {
    border-color: var(--brown);
    transform: translateY(-4px);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--brown);
    opacity: .18;
    line-height: 1;
    margin-bottom: .5rem;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: .8rem;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.step-text {
    font-size: .85rem;
    line-height: 1.7;
    color: var(--mid);
}

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(20, 16, 12, .9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.open {
    display: flex;
}

.modal-box {
    background: var(--white);
    max-width: 500px;
    width: 100%;
    padding: 3rem;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 1.6rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--mid);
    transition: color .2s;
}

.modal-close:hover {
    color: var(--brown);
}

.modal-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.modal-box p {
    font-size: .88rem;
    color: var(--mid);
    margin-bottom: 1.8rem;
}

/* ══════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════ */
.gallery-section {
    padding: 5rem 5rem;
    background: var(--white);
}

.gal-filter {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.gal-btn {
    padding: .55rem 1.4rem;
    border: 1.5px solid var(--border);
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--mid);
    cursor: pointer;
    transition: all .25s;
}

.gal-btn:hover,
.gal-btn.active {
    background: var(--brown);
    border-color: var(--brown);
    color: #fff;
}

.gal-grid {
    columns: 3;
    column-gap: 1rem;
}

.gal-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gal-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .6s;
}

.gal-item:hover img {
    transform: scale(1.05);
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(117, 76, 41, 0);
    transition: background .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.gal-item:hover .gal-overlay {
    background: rgba(117, 76, 41, .55);
}

.gal-title {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s, transform .3s;
}

.gal-sub {
    color: rgb(255, 255, 255);
    font-size: 20px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: .3rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s .05s, transform .3s .05s;
}

.gal-zoom {
    color: #fff;
    font-size: 1.5rem;
    margin-top: .8rem;
    opacity: 0;
    transform: scale(.5);
    transition: opacity .3s .1s, transform .3s .1s;
}

.gal-zoom a{
    font-size: 16px;
    border: 1px solid #ffffffbd;
    padding: 4px 22px;
    border-radius: 5px;
}
.gal-item:hover .gal-title,
.gal-item:hover .gal-sub,
.gal-item:hover .gal-zoom {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gal-stats {
    background: var(--warm);
    padding: 4rem 5rem;
}

.gal-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.gs-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--brown);
}

.gs-label {
    font-size: .74rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: .4rem;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 8, 6, .95);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.open {
    display: flex;
}

.lb-inner {
    position: relative;
    max-width: 900px;
    width: 100%;
}

.lb-inner img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lb-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: color .2s;
}

.lb-close:hover {
    color: var(--gold);
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .15);
    border: none;
    color: #fff;
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lb-prev {
    left: -60px;
}

.lb-next {
    right: -60px;
}

.lb-prev:hover,
.lb-next:hover {
    background: var(--brown);
}

.lb-caption {
    text-align: center;
    margin-top: 1rem;
    color: rgba(255, 255, 255, .7);
    font-size: .88rem;
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.qc-strip {
    background: var(--white);
    padding: 2.5rem 5rem;
    border-bottom: 1px solid var(--border);
}

.qc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.qc-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qc-icon {
    width: 50px;
    height: 50px;
    background: var(--brown);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.qc-label {
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: .2rem;
}

.qc-val {
    font-size: .9rem;
    font-weight: 600;
    color: var(--charcoal);
}

.qc-val a {
    color: var(--charcoal);
    transition: color .2s;
}

.qc-val a:hover {
    color: var(--brown);
}

.contact-main {
    /* padding: 6rem 5rem; */
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 46px;
    height: 46px;
    background: var(--warm);
    border: 1px solid var(--border);
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: background .25s, border-color .25s;
}

.info-item:hover .info-icon {
    background: var(--brown);
    border-color: var(--brown);
    color: #fff;
}

.info-label {
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: .25rem;
}

.info-val {
    font-size: .92rem;
    font-weight: 500;
    color: var(--charcoal);
}

.info-val a {
    color: var(--charcoal);
    transition: color .2s;
}

.info-val a:hover {
    color: var(--brown);
}

.map-placeholder {
    margin-top: 2rem;
    background: var(--warm);
    border: 1px solid var(--border);
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: var(--mid);
}

.map-placeholder span {
    font-size: 2rem;
}

.map-placeholder p {
    font-size: .82rem;
    letter-spacing: .08em;
}

.faq {
    padding: 5rem 5rem;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color .25s;
}

.faq-item.open {
    border-color: var(--brown);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.6rem;
    font-size: .92rem;
    font-weight: 600;
    color: var(--charcoal);
}

.faq-arrow {
    font-size: 1.1rem;
    color: var(--brown);
    transition: transform .3s;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a-inner {
    padding: 0 1.6rem 1.4rem;
    font-size: .88rem;
    line-height: 1.75;
    color: var(--mid);
}

/* ══════════════════════════════════════
   FORMS (shared across pages)
══════════════════════════════════════ */
.contact-form-wrap {
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--border);
}

.contact-form-wrap h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.contact-form-wrap>p {
    font-size: .88rem;
    color: var(--mid);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    margin-bottom: 1.2rem;
}

.form-group label {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .85rem 1rem;
    border: 1.5px solid var(--border);
    background: var(--cream);
    font-family: 'Jost', sans-serif;
    font-size: .9rem;
    color: var(--charcoal);
    outline: none;
    transition: border-color .25s, background .25s;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brown);
    background: #fff;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    background: var(--brown);
    color: #fff;
    padding: 1.1rem;
    border: 2px solid var(--brown);
    font-family: 'Jost', sans-serif;
    font-size: .84rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s;
    margin-top: .5rem;
}

.form-submit:hover {
    background: var(--brown-dark);
    transform: translateY(-1px);
}

.form-success {
    display: none;
    text-align: center;
    padding: 1.2rem;
    background: #f0faf0;
    color: #2a6a2a;
    border: 1px solid #b0d8b0;
    margin-top: 1rem;
    font-size: .9rem;
    font-weight: 500;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
    background: var(--charcoal);
    color: #fff;
    padding: 5rem 5rem 1rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.f-logo {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1rem;
}

.f-logo svg {
    width: 42px;
    height: 42px;
}

.f-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.footer-brand p {
    font-size: 16px;
    line-height: 1.85;
    color: #a09890;
    max-width: 90%;
    margin-bottom: 1.4rem;
}

.f-socials {
    display: flex;
    gap: .6rem;
}

.f-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid #3a3530;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a09890;
    font-size: 16px;
    font-weight: 700;
    transition: all .25s;
}

.f-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h4 {
    font-size: 20px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: .6rem;
}

.footer-col a {
    font-size: 16px;
    color: #a09890;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid #2e2a26;
    padding-top: 0.8rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 16px;
    color: #555050;
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(1.06);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤1100px)
══════════════════════════════════════ */
@media(max-width:1100px) {

    .navbar,
    .topbar {
        padding: 0 2rem;
    }

    .nav-links,
    .nav-phone-wrap,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .story,
    .mission,
    .timeline,
    .team,
    .stats-strip {
        padding: 4rem 2rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-badge {
        right: 0;
        bottom: -1.5rem;
    }

    .mission-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .tl-wrap::before {
        left: 0;
        transform: none;
    }

    .tl-item {
        grid-template-columns: 24px 1fr;
    }

    .tl-left {
        display: none;
    }

    .tl-item:nth-child(even) .tl-left {
        display: none;
    }

    .tl-item:nth-child(even) .tl-center,
    .tl-center {
        order: 1;
        justify-content: flex-start;
        padding-top: .35rem;
    }

    .tl-item:nth-child(even) .tl-right,
    .tl-right {
        order: 2;
        text-align: left;
        padding-left: 1.5rem;
        padding-right: 0;
    }

    .slide-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .prod-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-section,
    .gal-stats {
        padding: 4rem 2rem;
    }

    .gal-grid {
        columns: 2;
    }

    .gal-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .qc-strip,
    .contact-main,
    .faq {
        padding: 4rem 2rem;
    }

    .qc-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-strip {
        padding: 3rem 2rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .prod-slider-section {
        /* padding: 4rem 0; */
    }

    .prod-slider-head,
    .slider-controls {
        padding: 0 2rem;
    }

    .lb-prev {
        left: -10px;
    }

    .lb-next {
        right: -10px;
    }

    .why,
    .testi,
    footer {
        padding: 2rem 2rem;
    }

    .products-section,
    .process {
        padding: 4rem 2rem;
    }
}

/* RESPONSIVE — MOBILE (≤650px) */
@media(max-width:650px) {
    :root {
        --topbar-h: 0px;
        --header-h: 76px;
    }

    .topbar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .mob-menu {
        top: var(--nav-h);
    }

    .scroll-progress {
        top: var(--nav-h);
    }

    .page-hero {
        padding-top: 76px;
    }

    .why-grid,
    .prod-grid,
    .testi-grid,
    .mission-grid,
    .team-grid,
    .stats-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .gal-grid {
        columns: 1;
    }

    .gal-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .qc-grid {
        grid-template-columns: 1fr;
    }

    .slide-card {
        flex: 0 0 calc(100% - 2rem);
    }
}

/* services */
.services-section {
    /* padding: 6rem 5rem; */
    background: var(--white);
}

.services-intro {
    max-width: 640px;
    margin-bottom: 4rem;
}

.services-intro p {
    font-size: .95rem;
    line-height: 1.85;
    color: var(--mid);
    margin-top: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.srv-card {
    border: 1px solid var(--border);
    padding: 2.8rem 2.2rem;
    position: relative;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    overflow: hidden;
}

.srv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
    transition: background .3s;
}

.srv-card:hover {
    border-color: var(--brown);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(117, 76, 41, .12);
}

.srv-card:hover::before {
    background: var(--brown);
}

.srv-icon {
    width: 60px;
    height: 60px;
    background: var(--warm);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: background .3s, border-color .3s;
}

.srv-card:hover .srv-icon {
    background: #fff;
    border: none;
}

.srv-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: .65rem;
}

.srv-desc {
    font-size: .88rem;
    line-height: 1.8;
    color: var(--mid);
    margin-bottom: 1.5rem;
}

.srv-features {
    list-style: none;
    margin-bottom: 1.8rem;
}

.srv-features li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .84rem;
    color: var(--charcoal);
    padding: .35rem 0;
    border-bottom: 1px solid var(--border);
}

.srv-features li:last-child {
    border-bottom: none;
}

.srv-features li::before {
    content: '✓';
    color: var(--brown);
    font-weight: 700;
    flex-shrink: 0;
}

.srv-link {
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brown);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: gap .25s;
}

.srv-link:hover {
    gap: .8rem;
}

/* ── HOW WE WORK ── */
.how-we-work {
    padding: 6rem 5rem;
    background: var(--cream);
}

.hww-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 3.5rem;
    position: relative;
}

.hww-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.hww-step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.hww-num {
    width: 72px;
    height: 72px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brown);
    margin: 0 auto 1.2rem;
    transition: background .3s, border-color .3s, color .3s;
}

.hww-step:hover .hww-num {
    background: var(--brown);
    border-color: var(--brown);
    color: #fff;
}

.hww-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: .5rem;
}

.hww-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mid);
}

/* ── WHY CHOOSE SERVICES ── */
.srv-why {
    padding: 6rem 5rem;
    background: var(--warm);
}

.srv-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.srv-why-img {
    position: relative;
}

.srv-why-img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.srv-why-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--brown);
    color: #fff;
    padding: 1.6rem 2rem;
    text-align: center;
}

.srv-why-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
}

.srv-why-badge-text {
    font-size: .65rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .85;
    margin-top: .3rem;
}

.srv-why-list {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.srv-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.srv-why-list li:last-child {
    border-bottom: none;
}

.srv-why-icon {
    width: 40px;
    height: 40px;
    background: var(--brown);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.srv-why-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: .25rem;
}

.srv-why-item-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mid);
}

/* ── PRICING PLANS ── */
.pricing {
    padding: 6rem 5rem;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    border: 1px solid var(--border);
    padding: 2.8rem 2.2rem;
    position: relative;
    transition: transform .3s, box-shadow .3s;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(117, 76, 41, .12);
}

.plan-card.popular {
    border-color: var(--brown);
    background: var(--brown);
    color: #fff;
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--gold);
    color: var(--charcoal);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem .8rem;
}

.plan-name {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: .8rem;
}

.plan-card.popular .plan-name {
    color: rgba(255, 255, 255, .7);
}

.plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--brown);
    line-height: 1;
    margin-bottom: .3rem;
}

.plan-card.popular .plan-price {
    color: #fff;
}

.plan-price span {
    font-size: .9rem;
    font-weight: 400;
    font-family: 'Jost', sans-serif;
    opacity: .7;
}

.plan-desc {
    font-size: .84rem;
    color: var(--mid);
    margin: .8rem 0 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    line-height: 1.7;
}

.plan-card.popular .plan-desc {
    color: rgba(255, 255, 255, .75);
    border-color: rgba(255, 255, 255, .2);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .86rem;
    padding: .5rem 0;
    color: var(--charcoal);
}

.plan-card.popular .plan-features li {
    color: rgba(255, 255, 255, .9);
}

.plan-features li::before {
    content: '✓';
    color: var(--brown);
    font-weight: 700;
    flex-shrink: 0;
}

.plan-card.popular .plan-features li::before {
    color: var(--gold);
}

.plan-features li.disabled {
    opacity: .4;
    text-decoration: line-through;
}

.plan-features li.disabled::before {
    content: '✕';
    color: var(--mid);
}

.plan-btn {
    display: block;
    text-align: center;
    padding: .85rem;
    font-family: 'Jost', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 2px solid var(--brown);
    color: var(--brown);
    transition: all .25s;
}

.plan-btn:hover {
    background: var(--brown);
    color: #fff;
}

.plan-card.popular .plan-btn {
    background: #fff;
    border-color: #fff;
    color: var(--brown);
}

.plan-card.popular .plan-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* ── TESTIMONIALS ── */
.srv-testi {
    padding: 6rem 5rem;
    background: #fff;
}

/* ── CTA BANNER ── */
.srv-cta {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.srv-cta-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1600&q=80') center/cover;
    filter: brightness(.3);
}

.srv-cta-content {
    position: relative;
    color: #fff;
    padding: 3rem 2rem;
}

.srv-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.srv-cta-content p {
    font-size: .95rem;
    opacity: .8;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.srv-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media(max-width: 1100px) {

    .services-section,
    .how-we-work,
    .srv-why,
    .pricing,
    .srv-testi {
        padding: 4rem 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hww-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

    .hww-grid::before {
        display: none;
    }

    .hww-step {
        padding-bottom: 1rem;
    }

    .srv-why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .srv-why-badge {
        left: 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 650px) {

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hww-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.why .why-grid .why-card img{
    width: 60px;
}
.footer-brand .nav-logo img{
    width: 250px;
    margin-bottom: 20px;
}
.footer-address li a{
    display: flex;
    align-items: start;
    justify-content: start;
}
.footer-address li a i{
    margin-right: 10px;
    margin-top: 5px;
    min-width: 20px;
}
.map-placeholder div{
    width: 100%;
}
.d-flex{
    display: flex;
}
.justify-content-center{
    justify-content: center !important;
}
.footer-bottom p a{
    color: #fff;
}
.mission-icon img{
    width: 70px;
    margin: auto;
}

@media screen and (max-width:575px) {
    .contact-form-wrap{
        padding: 20px !important;
    }

    .hero-badge{
        bottom: 0 !important;
    }
    .prod-slider-head{
        flex-wrap: wrap;
    }
    .footer-top{
        margin-bottom: 2rem;
    }
    .page-hero{
        min-height: 310px;
    }
}


{{-- <p id="preview_title" class="fw-bold d-none"></p>
                        <input type="text" name="title" id="title" class="form-control" placeholder="Enter category name"
                            required> --}}
