:root {
    --teal: #005852;
    --teal-dark: #003d39;
    --teal-mid: #0a6d66;
    --cream: #ece4d8;
    --gold: #ba9760;
    --gold-mid: #a7844e;
    --gold-dark: #846233;
    --white: #fdf9f4;
    --ink: #1a1208;
    --muted: #6b5d4e;
    --pad: clamp(20px, 5vw, 80px);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--ink);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

/* ── NOISE ── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    opacity: .35;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E")
}

/* ── CURSOR ── */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s;
    mix-blend-mode: multiply;
    display: none
}

@media(hover:hover) {
    .cursor {
        display: block
    }
}

.cursor.big {
    width: 26px;
    height: 26px;
    background: var(--teal)
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px var(--pad);
    transition: background .4s, box-shadow .4s
}

nav.scrolled {
    background: rgba(0, 50, 46, .97);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 32px rgba(0, 0, 0, .18)
}

.nav-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--cream);
    text-decoration: none;
    flex-shrink: 0;
    text-align: center;
    line-height: 20px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center
}

.nav-links a {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color .3s
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--gold)
}

.nav-order {
    background: var(--gold) !important;
    color: var(--ink) !important;
    padding: 8px 20px;
    font-weight: 500 !important
}

.nav-order:hover {
    background: var(--gold-dark) !important;
    color: var(--cream) !important
}

/* hamburger */
.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 700
}

.ham span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: .3s
}

.ham.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.ham.open span:nth-child(2) {
    opacity: 0
}

.ham.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* drawer */
.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 80vw);
    height: 100dvh;
    background: var(--teal-dark);
    z-index: 650;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 32px;
    gap: 4px;
    transition: right .38s cubic-bezier(.16, 1, .3, 1);
    box-shadow: -6px 0 40px rgba(0, 0, 0, .3)
}

.drawer.open {
    right: 0
}

.drawer a {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--cream);
    text-decoration: none;
    padding: 10px 10px;
    border-bottom: 1px solid rgba(236, 228, 216, .07);
    display: flex;
    transition: color .2s
}

.drawer a:hover {
    color: var(--gold)
}

.drawer-wa {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem !important;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 14px 20px;
    margin-top: 20px;
    border-bottom: none !important;
    justify-content: center;
}

.scrim {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 640;
    opacity: 0;
    pointer-events: none;
    transition: opacity .38s
}

.scrim.open {
    opacity: 1;
    pointer-events: all
}

/* ── HERO ── */
.hero {
    min-height: 100dvh;
    background: var(--teal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden
}

.hero-pat {
    position: absolute;
    inset: 0;
    opacity: .055;
    pointer-events: none
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(140px, 14vw, 160px) 48px 80px var(--pad);
    position: relative;
    z-index: 2
}

.hero-eyebrow {
    font-size: .62rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp .7s ease .4s forwards
}

.hero-h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 4.5vw, 6.5rem);
    line-height: .9;
    color: var(--cream);
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp .8s ease .55s forwards
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold)
}

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: rgb(255, 255, 255);
    line-height: 1.75;
    max-width: 360px;
    margin-bottom: 38px;
    opacity: 0;
    animation: fadeUp .8s ease .7s forwards
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .8s ease .85s forwards
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 48px 80px 0;
    opacity: 0;
    animation: fadeIn 1.2s ease .3s forwards
}

.hero-vis {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/5;
    position: relative
}

.hero-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #0a7068, #003d39);
    position: relative;
    overflow: hidden
}

.hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: .55; */
    /* mix-blend-mode: luminosity */
}

.hero-frame-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--teal) 0%, transparent 55%)
}

.hero-quote {
    position: absolute;
    bottom: 26px;
    left: 26px;
    right: 26px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .98rem;
    color: rgb(255 255 255);
    line-height: 1.5;
    text-align: center;
}

.hero-vis::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    right: -18px;
    bottom: -18px;
    border: 1px solid rgba(186, 151, 96, .2);
    z-index: -1;
}

.hero-badge {
    position: none;
    bottom: -14px;
    right: -14px;
    width: 88px;
    height: 88px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: none;
}

.hero-badge b {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    color: var(--ink);
    line-height: 1;
}

.hero-badge small {
    font-size: .45rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink);
    margin-top: 2px
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: var(--pad);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .58rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(236, 228, 216, .3);
    z-index: 2;
    opacity: 0;
    animation: fadeUp .8s ease 1.2s forwards
}

.scroll-line {
    width: 34px;
    height: 1px;
    background: var(--gold);
    position: relative;
    overflow: hidden
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cream);
    animation: slideR 2s ease-in-out infinite;
}

/* ── MARQUEE ── */
.marquee {
    background: var(--gold);
    padding: 12px 0;
    overflow: hidden
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 5s linear infinite;
}

.mitem {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--ink);
    padding: 0 26px;
    letter-spacing: .04em
}

.mdot {
    color: var(--teal);
    margin: 0 -8px;
    font-size: .6rem
}

/* ── SECTION SHARED ── */
.sec-pad {
    padding: 80px var(--pad)
}

.sec-label {
    font-size: .6rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold-mid);
    margin-bottom: 12px;
    display: block
}

.sec-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.9rem, 3.2vw, 3.4rem);
    line-height: 1.05;
    color: var(--ink);
    margin: 10px 0;
}

.sec-title em {
    font-style: italic;
    color: var(--teal)
}

/* ── PRODUCTS ── */
.cat-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 32px 0 44px
}

.cat-wrap::-webkit-scrollbar {
    display: none
}

.cat-filters {
    display: flex;
    gap: 8px;
    /* width: max-content */
}

.cat-btn {
    padding: 8px 18px;
    border: 1px solid rgba(0, 88, 82, .2);
    background: transparent;
    color: var(--muted);
    font-family: 'Jost', sans-serif;
    font-size: .67rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    white-space: nowrap
}

.cat-btn.active,
.cat-btn:hover {
    background: var(--teal);
    color: var(--cream);
    border-color: var(--teal)
}

.pgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px
}

.pcard {
    background: var(--white);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s
}

.pcard:hover {
    z-index: 2;
    transform: scale(1.01)
}

.pcard-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e8ddd0, #d4c4b0)
}

.pcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.16, 1, .3, 1)
}

.pcard:hover .pcard-img img {
    transform: scale(1.08)
}

.pcard-over {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 88, 82, .7), transparent 50%);
    opacity: 0;
    transition: opacity .4s
}

.pcard:hover .pcard-over {
    opacity: 1
}

.pcard-quick {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--gold);
    color: var(--ink);
    padding: 6px 16px;
    font-size: .62rem;
    letter-spacing: .17em;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: all .35s
}

.pcard:hover .pcard-quick {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

.pcard-body {
    padding: 18px 20px 22px
}

.pcard-cat {
    font-size: .57rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-mid);
    margin-bottom: 5px
}

.pcard-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.18rem;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.15;
    font-weight: 500;
}

.pcard-type {
    width: 15px;
    height: 15px;
    margin: 4px 4px;
}

.pcard-tag {
    padding: 5px;
    margin: 5px 0;
    background: #ECE4D8;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

.pcard-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .9rem;
    color: black;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 10px 0;
}

.pcard-foot {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.pcard-price {
    font-family: 'DM Serif Display', serif;
    font-size: 1.12rem;
    color: var(--teal)
}

.pcard-size {
    font-size: .57rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--cream);
    padding: 3px 8px
}

/* ── MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 800;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
    display: flex;
    align-items: center;
    justify-content: center
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all
}

.modal-box {
    background: var(--white);
    width: min(860px, 94vw);
    max-height: 90dvh;
    overflow-y: auto;
    transform: scale(.95) translateY(20px);
    opacity: 0;
    transition: transform .38s cubic-bezier(.16, 1, .3, 1), opacity .35s;
    position: relative
}

.modal-overlay.open .modal-box {
    transform: scale(1) translateY(0);
    opacity: 1
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px
}

.modal-img-side {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #e8ddd0, #c4a882);
    min-height: 300px
}

.modal-img-side img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.modal-ph {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.modal-ph-emoji {
    font-size: 4rem
}

.modal-ph-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--muted)
}

.modal-body {
    padding: clamp(24px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px
}

.modal-cat {
    font-size: .57rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold-mid)
}

.modal-name {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    color: var(--ink);
    line-height: 1.05
}

.modal-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7
}

.modal-prices {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.mprice-label {
    font-size: .57rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 2px
}

.mprice-val {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--teal);
    display: block;
    line-height: 1
}

.modal-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 14px 24px;
    font-size: .73rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    width: 100%;
    transition: background .3s
}

.modal-wa:hover {
    background: #128C7E
}

.modal-wa svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.modal-note {
    font-size: .6rem;
    color: var(--muted);
    line-height: 1.6;
    text-align: center;
    margin-top: 10px
}

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    width: 36px;
    height: 36px;
    background: var(--cream);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 10px 0 auto;
    z-index: 10;
    flex-shrink: 0;
    transition: background .2s
}

.modal-close:hover {
    background: var(--gold);
    color: #fff
}

/* ── ABOUT ── */
.about-wrap {
    background: var(--cream);
    overflow: hidden
}

.about-intro {
    background: var(--teal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 96px var(--pad) 72px;
    position: relative;
    overflow: hidden
}

.about-intro::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(186, 151, 96, .1), transparent 70%);
    bottom: -140px;
    right: -60px;
    pointer-events: none
}

.about-eyebrow {
    font-size: .6rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block
}

.about-h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 3.8vw, 4rem);
    line-height: .95;
    color: var(--cream)
}

.about-h2 em {
    font-style: italic;
    color: var(--gold)
}

.about-lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    color: white;
    line-height: 1.85;
    border-left: 2px solid rgba(186, 151, 96, .38);
    padding-left: 22px
}

.about-lead strong {
    font-style: normal;
    color: rgba(236, 228, 216, .9)
}

.creds-strip {
    background: white;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 var(--pad)
}

.creds-strip::-webkit-scrollbar {
    display: none
}

.cred {
    flex: 1 0 140px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 16px 22px 16px;
    ;
    border-right: 1px solid rgba(26, 18, 8, .12)
}

.cred:last-child {
    border-right: none
}

.cred-icon {
    font-size: 1.2rem;
    flex-shrink: 0
}

.cred-lbl {
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(26, 18, 8, .5);
    display: block;
    margin-bottom: 2px
}

.cred-val {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    color: #015953;
    line-height: 1.25
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.story-l {
    padding: 68px clamp(24px, 4vw, 60px) 68px var(--pad);
    background: var(--cream);
    border-right: 1px solid rgba(0, 88, 82, .07)
}

.story-r {
    padding: 68px var(--pad) 68px clamp(24px, 4vw, 60px);
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 36px
}

.story-lbl {
    font-size: .58rem;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold-mid);
    display: block;
    margin-bottom: 16px
}

.story-p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.06rem;
    color: black;
    line-height: 1.92;
    margin-bottom: 18px
}

.story-p:last-child {
    margin-bottom: 0
}

.story-pull {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: clamp(1.3rem, 2vw, 1.9rem);
    line-height: 1.28;
    color: var(--teal);
    border-top: 1px solid rgba(0, 88, 82, .13);
    padding-top: 26px;
    margin-top: 28px
}

.vision-p {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 1.08rem;
    color: var(--teal);
    line-height: 1.65
}

.philo-strip {
    background: var(--teal);
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 var(--pad);
    border-top: 1px solid rgba(186, 151, 96, .1)
}

.philo-strip::-webkit-scrollbar {
    display: none
}

.philo {
    flex: 1 0 160px;
    padding: 30px 28px 30px 28px;
    border-right: 1px solid rgba(236, 228, 216, .07);
}

.philo:last-child {
    border-right: none;
    padding-right: 0
}

.philo-n {
    font-family: 'DM Serif Display', serif;
    font-size: 1.7rem;
    color: rgb(186, 151, 96);
    line-height: 1;
    margin-bottom: 5px
}

.philo-t {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgb(255, 255, 255);
    line-height: 1.52
}

.founder-note {
    background: var(--ink);
    padding: clamp(44px, 6vw, 76px) var(--pad);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
    position: relative;
    overflow: hidden
}

.founder-note::before {
    content: '\201C';
    font-family: 'DM Serif Display', serif;
    font-size: 14rem;
    color: rgba(186, 151, 96, .05);
    position: absolute;
    top: -30px;
    left: var(--pad);
    line-height: 1;
    pointer-events: none
}

.founder-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 1
}

.founder-pic {
    width: 250px;
    height: 320px;
    /* background: linear-gradient(145deg, #2a1e14, #0a6d66); */
    overflow: hidden;
    position: relative;
}

.founder-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: .65; */
}

.founder-pic::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(186, 151, 96, .28)
}

.founder-shadow {
    position: absolute;
    bottom: -7px;
    right: -7px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(186, 151, 96, .12);
    pointer-events: none
}

.founder-sig {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--gold);
    text-align: center;
    white-space: nowrap
}

.founder-role-txt {
    font-size: .55rem;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    text-align: center
}

.note-col {
    position: relative;
    z-index: 1
}

.note-lbl {
    font-size: .57rem;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold-mid);
    margin-bottom: 20px;
    display: block
}

.note-p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: rgba(236, 228, 216, .56);
    line-height: 1.92;
    margin-bottom: 16px
}

.note-p em {
    font-style: normal;
    color: rgba(236, 228, 216, .86)
}

.note-sign {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    color: var(--gold);
    display: block;
    margin-top: 24px
}

.contact-strip {
    background: var(--teal);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px
}

.ctc {
    background: rgba(0, 0, 0, .1);
    padding: 24px 26px;
    display: flex;
    align-items: center;
    gap: 12px
}

.ctc-icon {
    font-size: .95rem;
    /* opacity: .42; */
    flex-shrink: 0
}

.ctc-lbl {
    font-size: 0.9rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(236, 228, 216, .28);
    display: block;
    margin-bottom: 3px
}

.ctc-val {
    font-size: 1rem;
    color: rgba(236, 228, 216, .7);
    display: block;
    word-break: break-word
}

.ctc-val a {
    color: var(--gold);
    text-decoration: none
}


/* ── TESTIMONIALS ── */
.testi-sec {
    background: var(--cream);
    padding: 80px 0;
}

.testi-head {
    padding: 0 var(--pad) 44px;
    display: flex;
    justify-content: space-between;
    /* align-items: flex-end; */
    flex-direction: column;
    gap: 20px;
    /* Keeps arrows aligned with the text */
}

.testi-ctrls {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.ctrl-btn {
    background: var(--white);
    border: 1px solid var(--teal);
    color: var(--teal);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.2rem;
}

.ctrl-btn:hover {
    background: var(--teal);
    color: var(--white);
}

.reviews-wrap {
    overflow: hidden;
    /* We hide the scrollbar but keep the function */
    position: relative;
    padding: 0 var(--pad);
    /* Gives breathing room on the sides */
}

/* Fades remain same, but check z-index */
.reviews-wrap::before,
.reviews-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    /* Slightly wider for better fade */
    z-index: 5;
    pointer-events: none;
}

.reviews-track {
    display: flex;
    gap: 18px;
    /* REMOVED: animation: scrollR 44s linear infinite; */
    width: auto;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* This is the magic for smooth sliding */
    scrollbar-width: none;
    /* Hides scrollbar in Firefox */
}

.reviews-track::-webkit-scrollbar {
    display: none;
    /* Hides scrollbar in Chrome/Safari */
}

.rcard {
    background: var(--white);
    padding: 26px;
    width: 290px;
    flex-shrink: 0;
    border-bottom: 3px solid var(--teal);
}

.rcard-stars {
    color: var(--gold);
    font-size: .9rem;
    margin-bottom: 10px;
    letter-spacing: 2px
}

.rcard-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .98rem;
    color: var(--ink);
    line-height: 1.68;
    margin-bottom: 16px
}

.rcard-name {
    font-family: 'Jost', sans-serif;
    font-size: .78rem;
    font-weight: 500;
    color: var(--teal);
    display: block;
    margin-bottom: 2px
}

.rcard-loc {
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    display: none;
}


/* ── FAQ ── */
.faq-sec {
    background: var(--cream);
    padding: 96px var(--pad)
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 72px;
    align-items: start
}

.faq-sticky {
    position: sticky;
    top: 100px
}

.faq-lbl {
    font-size: .6rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block
}

.faq-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.02;
    color: var(--ink);
    margin-bottom: 18px
}

.faq-title em {
    font-style: italic;
    color: var(--teal)
}

.faq-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.08rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 260px
}

.faq-list {
    display: flex;
    flex-direction: column
}

.faq-item {
    border-bottom: 1px solid rgba(0, 88, 82, .12)
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 88, 82, .12)
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 22px 0;
    display: flex;
    align-items: center;
    gap: 16px
}

.faq-num {
    font-family: 'DM Serif Display', serif;
    font-size: .78rem;
    color: var(--gold);
    flex-shrink: 0;
    width: 24px
}

.faq-question {
    font-family: 'DM Serif Display', serif;
    font-size: 1.06rem;
    color: var(--ink);
    line-height: 1.35;
    flex: 1;
    text-align: left
}

.faq-icon {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(0, 88, 82, .22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal);
    font-size: .95rem;
    font-style: normal;
    transition: background .25s, border-color .25s, transform .25s
}

.faq-item.open .faq-icon {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--cream);
    transform: rotate(45deg)
}

.faq-body {
    display: none;
    padding: 0 0 22px 40px
}

.faq-item.open .faq-body {
    display: block
}

.faq-body p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.06rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 6px
}

.faq-body p:last-child {
    margin-bottom: 0
}

.faq-body ul {
    list-style: none;
    margin: 4px 0 10px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.faq-body ul li {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.06rem;
    color: var(--muted);
    line-height: 1.75;
    padding-left: 18px;
    position: relative
}

.faq-body ul li::before {
    content: '—';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-style: normal;
    font-size: .82rem
}



/* ── ORDER ── */
.order-sec {
    background: var(--ink);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 96px var(--pad);
    position: relative;
    overflow: hidden
}

.order-sec::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    /* background: radial-gradient(circle, rgba(0, 88, 82, .5), transparent 70%); */
    bottom: -160px;
    right: -70px;
    pointer-events: none
}

.order-lbl {
    font-size: .6rem;
    letter-spacing: .36em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block
}

.order-h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 3.8vw, 4.2rem);
    line-height: .95;
    color: var(--cream);
    margin-bottom: 18px
}

.order-h2 em {
    font-style: italic;
    color: var(--gold)
}

.order-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.08rem;
    color: rgb(255, 255, 255);
    line-height: 1.8;
    margin-bottom: 32px;
}

.order-feats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.ofeat {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: .77rem;
    color: rgb(255, 255, 255);
    letter-spacing: .03em;
}

.ofeat-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.wa-big {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    background: #25D366;
    color: #fff;
    padding: 15px 32px;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .3s, transform .22s;
    box-shadow: 0 12px 40px rgba(37, 211, 102, .2)
}

.wa-big:hover {
    background: #128C7E;
    transform: translateY(-2px)
}

.wa-big svg {
    width: 20px;
    height: 20px
}

.order-card {
    background: rgba(236, 228, 216, .04);
    border: 1px solid rgba(236, 228, 216, .08);
    padding: 32px;
    position: relative;
    z-index: 1
}

.ocard-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.28rem;
    color: var(--gold);
    margin-bottom: 20px
}

.orow {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid rgba(236, 228, 216, .055)
}

.orow:last-child {
    border-bottom: none
}

.okey {
    font-size: .64rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
}

.oval {
    font-size: .82rem;
    color: rgba(255, 255, 255);
    text-align: right
}

/* ── FOOTER ── */
footer {
    background: var(--teal-dark);
    padding: 52px var(--pad) 26px;
    border-top: 1px solid rgba(186, 151, 96, .1)
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 40px
}

.foot-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 9px
}

.foot-tag {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .92rem;
    color: rgba(255, 255, 255);
    line-height: 1.72;
    max-width: 250px
}

.fc-title {
    font-size: .58rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-mid);
    margin-bottom: 16px;
    display: block
}

.foot-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.foot-links a {
    font-size: .8rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color .3s
}

.foot-links a:hover {
    color: var(--gold)
}

.foot-ci {
    font-size: .78rem;
    color: rgb(255, 255, 255);
    margin-bottom: 7px;
    line-height: 1.55
}

.foot-ci a {
    color: white;
    text-decoration: none
}

.foot-bottom {
    border-top: 1px solid rgba(236, 228, 216, .055);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.copy {
    font-size: .6rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgb(255, 255, 255)
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--gold);
    color: var(--ink);
    padding: 13px 26px;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .17em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background .3s, transform .2s;
    border: none
}

.btn-primary:hover {
    background: var(--gold-dark);
    color: var(--cream);
    transform: translateY(-1px)
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--cream);
    padding: 13px 26px;
    font-size: .7rem;
    letter-spacing: .17em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(236, 228, 216, .25);
    transition: border-color .3s, color .3s
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold)
}

/* ── REVEAL — default VISIBLE, animate when JS loads ── */
.r {
    opacity: 1;
    transform: none
}

.r.hidden {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.16, 1, .3, 1)
}

.r.hidden.vis {
    opacity: 1;
    transform: translateY(0)
}


/* ── FSSAI ── */
.foot-fssai {
    border-top: 1px solid rgba(236, 228, 216, .07);
    padding: 22px 0;
    margin: 0
}

.fssai-badge {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(186, 151, 96, .18);
    padding: 11px 20px
}

.fssai-logo-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-right: 18px;
    border-right: 1px solid rgba(186, 151, 96, .18)
}

.fssai-name {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .14em;
    color: #e8d8b0;
    line-height: 1
}

.fssai-tagline {
    font-size: .5rem;
    letter-spacing: .05em;
    color: rgb(255, 255, 255);
    line-height: 1.4;
    max-width: 170px;
    margin-top: 2px
}

.fssai-lic {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.fssai-lic-label {
    font-size: .5rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(236, 228, 216, .3)
}

.fssai-lic-num {
    font-family: 'Jost', sans-serif;
    font-size: .82rem;
    letter-spacing: .08em;
    color: white !important;
    text-decoration: none;
}


/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes slideR {
    from {
        left: -100%
    }

    to {
        left: 200%
    }
}

@keyframes scrollR {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ── SOCIAL & GOOGLE SECTION ── */
.social-sec {
    background: var(--white);
    border-top: 1px solid rgba(0, 88, 82, .07)
}

.social-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    padding: 96px var(--pad);
    align-items: start
}

.social-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.18rem;
    color: var(--muted);
    line-height: 1.85;
    margin: 20px 0 36px
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.social-link {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border: 1px solid rgba(0, 88, 82, .12);
    text-decoration: none;
    transition: border-color .3s, background .3s, transform .2s;
    background: transparent;
    position: relative
}

.social-link:hover {
    transform: translateY(-2px)
}

.social-link.instagram {
    color: var(--ink)
}

.social-link.instagram:hover {
    border-color: #e1306c;
    background: rgba(225, 48, 108, .03)
}

.social-link.google {
    color: var(--ink)
}

.social-link.google:hover {
    border-color: #4285F4;
    background: rgba(66, 133, 244, .03)
}

.social-link-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.social-link-icon svg {
    width: 28px;
    height: 28px
}

.social-link.instagram .social-link-icon svg {
    color: #e1306c;
    stroke: #e1306c
}

.social-link-body {
    display: flex;
    flex-direction: column;
    flex: 1
}

.social-link-handle {
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 2px
}

.social-link-label {
    font-size: .67rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted)
}

.social-link-arrow {
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .3s
}

.social-link:hover .social-link-arrow {
    transform: translate(3px, -3px)
}

.google-rating-card {
    background: var(--teal);
    padding: 36px;
    margin-bottom: 14px
}

.grc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.grc-logo {
    display: flex;
    align-items: center;
    gap: 8px
}

.grc-google-text {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: .02em
}

.grc-score {
    display: flex;
    flex-direction: column;
    align-items: flex-end
}

.grc-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1
}

.grc-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px
}

.grc-tag {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(236, 228, 216, .75);
    line-height: 1.6;
    margin-bottom: 28px
}

.grc-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    color: var(--ink);
    padding: 13px 20px;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .3s;
    margin-bottom: 14px;
    justify-content: center
}

.grc-btn:hover {
    background: #fff
}

.grc-note {
    font-size: .65rem;
    color: rgba(236, 228, 216, .4);
    text-align: center;
    letter-spacing: .05em
}

.google-reviews-mini {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.grm-card {
    background: var(--cream);
    padding: 18px 20px;
    border-left: 3px solid var(--gold)
}

.grm-stars {
    color: var(--gold);
    font-size: .8rem;
    letter-spacing: 1.5px;
    margin-bottom: 6px
}

.grm-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.65;
    margin-bottom: 8px
}

.grm-author {
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px
}

.grm-author::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--gold-mid)
}

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */

/* ── Tablet ≤ 900px ── */
@media(max-width:900px) {
    .nav-links {
        display: none
    }

    .ham {
        display: flex
    }

    .hero {
        grid-template-columns: 1fr
    }

    .hero-right {
        /* display: none */
        padding: 30px 30px 30px 30px;
    }

    .hero-left {
        padding: clamp(200px, 16vw, 140px) var(--pad) 60px;
    }

    .scroll-hint {
        display: none
    }

    .pgrid {
        grid-template-columns: 1fr 1fr
    }

    .modal-grid {
        grid-template-columns: 1fr
    }

    .modal-img-side {
        min-height: 220px
    }

    .modal-box {
        width: 94vw
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 72px var(--pad) 56px
    }

    .about-story {
        grid-template-columns: 1fr
    }

    .story-l {
        padding: 56px var(--pad);
        border-right: none;
        border-bottom: 1px solid rgba(0, 88, 82, .07)
    }

    .story-r {
        padding: 56px var(--pad)
    }

    .founder-note {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 56px var(--pad)
    }

    .faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-sticky {
        position: static;
    }

    .founder-col {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center
    }

    .founder-pic {
        width: 150px;
        height: 200px;
    }

    .contact-strip {
        grid-template-columns: 1fr 1fr
    }

    .order-sec {
        grid-template-columns: 1fr;
        padding: 72px var(--pad);
        gap: 40px
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }

    .social-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 72px var(--pad)
    }
}

/* ── Mobile ≤ 540px ── */
@media(max-width:540px) {
    :root {
        --pad: 20px
    }

    .hero-h1 {
        font-size: clamp(2.4rem, 9vw, 3.5rem)
    }

    .hero-sub {
        font-size: .98rem
    }

    .hero-ctas {
        flex-direction: column
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center
    }

    .pgrid {
        grid-template-columns: 1fr
    }

    /* modal slides up from bottom */
    .modal-overlay {
        align-items: flex-end
    }

    .modal-box {
        width: 100%;
        max-height: 88dvh;
        border-radius: 14px 14px 0 0;
        transform: translateY(30px);
        opacity: 0
    }

    .modal-overlay.open .modal-box {
        transform: translateY(0);
        opacity: 1
    }

    .cred {
        min-width: 130px
    }

    .philo {
        min-width: 150px
    }

    .founder-note::before {
        font-size: 7rem
    }

    .contact-strip {
        grid-template-columns: 1fr
    }

    .wa-big {
        width: 100%;
        justify-content: center
    }

    .faq-sec {
        padding: 72px var(--pad);
    }

    .faq-body {
        padding-left: 30px;
    }

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .foot-bottom {
        flex-direction: column;
        text-align: center
    }

}