.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
}

.reveal-up {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transition:
        clip-path 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
        opacity 0.6s ease;
}
.reveal-up.in {
    opacity: 1;
    clip-path: inset(0 0 0% 0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition:
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
        opacity 0.7s ease;
}
.reveal-scale.in {
    opacity: 1;
    transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
    .reveal-up,
    .reveal-scale {
        transition: none;
        opacity: 1;
        transform: none;
        clip-path: none;
    }
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 32px;
    max-width: 1160px;
    margin: 0 auto;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bitter", serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}
.brand-name {
    font-family: "Bitter", serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--char);
}
.brand-name span {
    color: var(--green-mid);
    font-style: italic;
    font-weight: 500;
}
.nav-links {
    display: flex;
    gap: 30px;
    font-weight: 600;
    font-size: 14.5px;
}
.nav-links a {
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: border-color 0.2s;
}
.nav-links a:hover {
    border-color: var(--gold);
}
.nav-cta .btn {
    padding: 11px 20px;
    font-size: 14px;
}
.menu-toggle {
    display: none;
}

/* HERO */
.hero {
    max-width: 1160px;
    margin: 0 auto;
    padding: 30px 32px 90px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.eyebrow {
    font-weight: 600;
    color: var(--brown);
    font-size: 14px;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
    padding-left: 24px;
}
.eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 2px;
    background: var(--brown);
    transform: translateY(-50%);
}
.hero h1 {
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 600;
    letter-spacing: -0.01em;
}
.hero h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--green-mid);
}
.hero p.lead {
    max-width: 440px;
    margin: 20px 0 28px;
    font-size: 17.5px;
    color: #3b352a;
}
.btn-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid transparent;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(32, 28, 21, 0.14);
}
.btn-primary {
    background: var(--green-deep);
    color: var(--cream-soft);
}
.btn-ghost {
    border-color: var(--char);
    color: var(--char);
}

.video-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(155deg, #3a3226, #211d16);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(32, 28, 21, 0.18);
}
.video-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(32, 28, 21, 0.55);
    backdrop-filter: blur(3px);
    color: var(--cream-soft);
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 7px;
}
.video-badge .rec {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e2604f;
    animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.25;
    }
}
.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 24px;
}
.press-loop {
    width: 130px;
    height: 104px;
}
.mold-top {
    transform-origin: center;
    animation: press 2.6s ease-in-out infinite;
}
.pulp {
    animation: squish 2.6s ease-in-out infinite;
}
.steam {
    opacity: 0;
    animation: steamRise 2.6s ease-in-out infinite;
}
@keyframes press {
    0%,
    20% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(26px);
    }
    60% {
        transform: translateY(26px);
    }
    85%,
    100% {
        transform: translateY(0);
    }
}
@keyframes squish {
    0%,
    20% {
        transform: scaleY(1);
    }
    40%,
    60% {
        transform: scaleY(0.45);
    }
    85%,
    100% {
        transform: scaleY(1);
    }
}
@keyframes steamRise {
    0%,
    40% {
        opacity: 0;
        transform: translateY(0);
    }
    55% {
        opacity: 0.7;
    }
    90% {
        opacity: 0;
        transform: translateY(-34px);
    }
    100% {
        opacity: 0;
    }
}
.video-placeholder p {
    font-size: 13px;
    color: #9c9686;
    max-width: 250px;
    margin: 0;
}
.play-note {
    font-size: 12px;
    color: #7d7767;
    letter-spacing: 0.02em;
}
@media (prefers-reduced-motion: reduce) {
    .mold-top,
    .pulp,
    .steam {
        animation: none;
    }
    .video-badge .rec {
        animation: none;
    }
}

/* FACTORY */
.factory {
    background: var(--char);
    color: var(--cream-soft);
    padding: 90px 0;
}
.factory h2 {
    color: var(--white);
    font-size: 32px;
    font-weight: 600;
    max-width: 520px;
}
.factory p.lead {
    color: #bfb9a8;
    max-width: 560px;
    margin-top: 16px;
    font-size: 16px;
}
.factory-points {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 34px;
}
.factory-points div {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 15px;
    color: #d8d2c1;
}
.factory-points span.dot {
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.photo-strip {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.photo-tile {
    aspect-ratio: 4/3;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(155deg, #4a4230, #2b2619);
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-tile svg {
    width: 34%;
    opacity: 0.5;
}
.photo-tile span {
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-size: 12.5px;
    color: #c7c0ac;
    font-weight: 600;
}
.photo-note {
    font-size: 13.5px;
    color: #6b6555;
    text-align: center;
    margin-top: -4px;
}

/* PROCESS */
.process {
    background: var(--green-deep);
    color: var(--cream-soft);
    padding: 76px 0;
}
.process h2 {
    color: var(--cream-soft);
    font-weight: 600;
    font-size: 30px;
    max-width: 520px;
}
.process .lead {
    color: #cbd8c8;
    max-width: 480px;
    margin-top: 14px;
    font-size: 16px;
}
.steps {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.steps::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: rgba(199, 154, 68, 0.25);
}
.steps::after {
    content: "";
    position: absolute;
    top: 17px;
    left: 6%;
    height: 2px;
    width: 0;
    background: var(--gold);
    transition: width 1.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.steps.in::after {
    width: 88%;
}
.step {
    position: relative;
    padding-right: 20px;
}
.step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--green-deep);
    font-family: "Bitter", serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.steps.in .step-num {
    transform: scale(1);
}
.step:nth-child(2) .step-num {
    transition-delay: 0.15s;
}
.step:nth-child(3) .step-num {
    transition-delay: 0.3s;
}
.step:nth-child(4) .step-num {
    transition-delay: 0.45s;
}
.step h3 {
    color: var(--cream-soft);
    font-size: 18px;
    font-weight: 600;
}
.step p {
    font-size: 14.5px;
    color: #b9c7b6;
    margin-top: 8px;
}

/* PRODUCTS */
.products {
    padding: 96px 0 40px;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}
.section-head h2 {
    font-size: 32px;
    font-weight: 600;
    max-width: 460px;
}
.section-head p {
    max-width: 380px;
    color: #4a4436;
    font-size: 15.5px;
}
.grid-products {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.card {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(32, 28, 21, 0.12);
}
.photo-slot {
    aspect-ratio: 4/3;
    background: linear-gradient(155deg, #e4d8b4, #c9ae73);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.photo-slot::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-radial-gradient(circle at 25% 30%, rgba(122, 75, 35, 0.15) 0 2px, transparent 2px 16px);
    mix-blend-mode: multiply;
}
.photo-slot svg {
    width: 30%;
    opacity: 0.55;
    position: relative;
    z-index: 1;
}
.card-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}
.card h3 {
    font-size: 19px;
    font-weight: 600;
}
.card p {
    font-size: 14.5px;
    color: #514b3d;
    flex-grow: 1;
    margin: 0;
}
.card .enquire {
    font-weight: 700;
    color: var(--brown);
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.card .enquire svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}
.card:hover .enquire svg {
    transform: translateX(4px);
}

/* OCCASIONS */
.occasions {
    padding: 20px 0 90px;
}
.occasions-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.occasion-card {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.occasion-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(32, 28, 21, 0.1);
}
.occasion-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.occasion-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
}
.occasion-card h3 {
    font-size: 17.5px;
    font-weight: 600;
}
.occasion-card p {
    font-size: 14px;
    color: #514b3d;
    margin: 0;
}

/* WHY */
.why {
    padding: 90px 0;
    background: var(--cream-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.why h2 {
    font-size: 32px;
    font-weight: 600;
    max-width: 420px;
}
.why-list {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.why-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.why-item .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brown);
    margin-top: 8px;
    flex-shrink: 0;
}
.why-item p {
    margin: 0;
    font-size: 15.5px;
}
.why-item strong {
    color: var(--green-deep);
}
.compare {
    background: var(--cream);
    border-radius: 16px;
    padding: 34px 30px;
}
.compare h4 {
    font-family: "Karla", sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--brown);
    margin: 0 0 22px;
}
.bar-row {
    margin-bottom: 22px;
}
.bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 8px;
}
.bar-track {
    height: 14px;
    border-radius: 7px;
    background: rgba(32, 28, 21, 0.08);
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    border-radius: 7px;
    width: 0;
    transition: width 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.bar-fill.cane {
    background: var(--green-mid);
}
.bar-fill.plastic {
    background: repeating-linear-gradient(45deg, var(--brown) 0 6px, #8c5a30 6px 12px);
    opacity: 0.55;
}
.compare.in .bar-fill.cane {
    width: 8%;
}
.compare.in .bar-fill.plastic {
    width: 100%;
}
.bar-note {
    font-size: 13px;
    color: #605a4b;
    margin-top: 6px;
}

/* REVIEWS */
.reviews {
    padding: 90px 0;
}
.rating-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 26px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.rating-num {
    font-family: "Bitter", serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--green-deep);
}
.rating-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stars {
    display: flex;
    gap: 3px;
}
.stars svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}
.rating-meta small {
    color: #5c563f;
    font-size: 13.5px;
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.review-card .stars svg {
    width: 15px;
    height: 15px;
}
.review-card p {
    font-size: 14.5px;
    color: #3f3a2c;
    margin: 0;
    flex-grow: 1;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
}
.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--green-mid);
    color: var(--cream-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}
.reviewer div span {
    display: block;
    font-size: 13px;
    color: #6b6555;
}
.reviewer strong {
    font-size: 14px;
}
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    font-size: 13.5px;
    font-weight: 600;
    color: #4a4436;
}
.google-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--char);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bitter", serif;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* INSTAGRAM */
.instagram {
    padding: 0 0 90px;
}
.insta-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}
.insta-handle {
    display: flex;
    align-items: center;
    gap: 12px;
}
.insta-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.insta-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--green-deep);
}
.follow-btn {
    padding: 10px 20px;
    border: 2px solid var(--char);
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.insta-tile {
    aspect-ratio: 1/1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(155deg, #dcc98b, #8c6a2e);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.insta-tile:nth-child(2n) {
    background: linear-gradient(155deg, #b7c4ae, #4c6b4f);
}
.insta-tile:nth-child(3n) {
    background: linear-gradient(155deg, #e4d8b4, #7a4b23);
}
.insta-tile:hover {
    transform: scale(1.04);
}
.insta-tile svg {
    width: 26%;
    opacity: 0.55;
    stroke: #fff;
}

/* ENQUIRY / CTA (replaces the old plain CTA band) */
.enquiry {
    background: var(--char);
    color: var(--cream-soft);
    padding: 90px 0;
}
.enquiry-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}
.enquiry h2 {
    color: var(--white);
    font-size: 32px;
    font-weight: 600;
    max-width: 400px;
}
.enquiry p.lead {
    color: #bfb9a8;
    max-width: 400px;
    margin-top: 16px;
    font-size: 15.5px;
}
.enquiry-points {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14.5px;
    color: #d8d2c1;
}
.enquiry-points div {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.enquiry-points span.dot {
    width: 7px;
    height: 7px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.form-card {
    background: var(--cream-soft);
    border-radius: 16px;
    padding: 34px;
    color: var(--char);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.field.full {
    grid-column: 1/-1;
}
.field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--green-deep);
}
.field input,
.field select,
.field textarea {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--line);
    background: var(--white);
    font-family: "Karla", sans-serif;
    font-size: 14.5px;
    color: var(--char);
    outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--green-mid);
}
.field textarea {
    resize: vertical;
    min-height: 90px;
}
.submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: var(--green-deep);
    color: var(--cream-soft);
    font-weight: 700;
    font-size: 15px;
    margin-top: 6px;
    cursor: pointer;
    transition: transform 0.15s ease;
}
.submit-btn:hover {
    transform: translateY(-2px);
}
.form-note {
    font-size: 12.5px;
    color: #8f8974;
    margin-top: 10px;
    text-align: center;
}

/* FOOTER */
footer {
    background: var(--green-deep);
    color: #cbd8c8;
    padding: 56px 0 26px;
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}
footer h4 {
    color: var(--cream-soft);
    font-family: "Bitter", serif;
    font-weight: 600;
    font-size: 20px;
    margin: 0 0 10px;
}
footer p {
    font-size: 14.5px;
    margin: 0;
    color: #a9baa6;
}
.foot-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14.5px;
    margin-top: 4px;
}
.foot-bottom {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #8fa38c;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .hero {
        grid-template-columns: 1fr;
        padding-bottom: 60px;
    }
    .hero > .video-frame {
        order: -1;
    }
    .steps {
        grid-template-columns: 1fr 1fr;
        row-gap: 34px;
    }
    .steps::before,
    .steps::after {
        display: none;
    }
    .grid-products {
        grid-template-columns: 1fr 1fr;
    }
    .occasions-grid {
        grid-template-columns: 1fr 1fr;
    }
    .photo-strip {
        grid-template-columns: 1fr 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .review-grid {
        grid-template-columns: 1fr;
    }
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .enquiry-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-row-3 {
        grid-template-columns: 1fr;
    }
    .foot-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
@media (max-width: 560px) {
    .grid-products {
        grid-template-columns: 1fr;
    }
    .occasions-grid {
        grid-template-columns: 1fr;
    }
    .photo-strip {
        grid-template-columns: 1fr;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
}
