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

html,
body {
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --red: #EB3C27;
    --red-dark: #C42F1C;
    --blush: #EDCDC2;
    --rose: #ECD8DC;
    --cream: #F1F0E2;
    --brown: #8F7265;
    --brown-dk: #5a4035;
    --brown-lt: #b89c91;
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Poppins', sans-serif;
    --navbar-h: 80px;
    --marquee-h: 40px;
}

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: #000;
    line-height: 1.6;
}

.page-top {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    height: 100vh;
    min-height: 600px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-h);
    padding: 0 6%;
    display: flex;
    align-items: center;
    background: var(--red);
    z-index: 9999;
    flex-shrink: 0;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.04em;
}

.logo img {
    height: 52px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.nav-links a {
    color: rgba(241, 240, 226, 0.9);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    transition: color 0.25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #D4AF37;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #D4AF37;
}

.nav-links a.active::after {
    width: 100%;
}

.nav-links a.nav-outline {
    border: 1px solid rgba(241, 240, 226, 0.6);
    padding: 6px 16px;
    border-radius: 25px;
}

.nav-links a.nav-outline::after {
    display: none;
}

.nav-links a.nav-outline:hover {
    background: var(--cream);
    color: var(--red);
    border-color: var(--cream);
}

.hamburger {
    display: none;
    font-size: 22px;
    color: var(--cream);
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
}

body.menu-open {
    overflow: hidden;
}

.nav-spacer {
    height: var(--navbar-h);
    flex-shrink: 0;
}

.hero {
    position: relative;
    width: 100%;
    height: var(--hero-h, calc(100vh - 80px - 40px));
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    animation: kenBurns 14s ease-out forwards;
    transform-origin: center center;
}

@keyframes kenBurns {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top,
            rgba(26, 14, 8, 0.85) 0%,
            rgba(26, 14, 8, 0.48) 32%,
            rgba(26, 14, 8, 0.14) 62%,
            rgba(26, 14, 8, 0.04) 100%),
        linear-gradient(to bottom,
            rgba(26, 14, 8, 0.2) 0%,
            transparent 28%);
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 55% at 50% 100%,
            rgba(237, 205, 194, 0.07) 0%,
            transparent 70%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    pointer-events: none;
}

.hero-pills {
    position: absolute;
    top: 28px;
    right: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    opacity: 0;
    animation: fadeSlideLeft 0.8s ease 0.9s forwards;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
    padding: 6px 13px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pill-veg {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pill-veg .vdot {
    width: 7px;
    height: 7px;
    background: #28A745;
    border-radius: 50%;
    flex-shrink: 0;
}

.pill-loc {
    background: rgba(90, 64, 53, 0.6);
    color: var(--blush);
    border: 1px solid rgba(90, 64, 53, 1.0);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 60px 44px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    gap: 40px;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    opacity: 0;
    animation: revealUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.kicker-line {
    width: 26px;
    height: 1px;
    background: var(--brown-dk);
    opacity: 0.65;
}

.kicker-text {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--brown-dk);
}

.hero-headline {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 22px;
}

.hero-headline .hl-1 {
    display: block;
    font-size: clamp(48px, 7vw, 100px);
    opacity: 0;
    animation: revealUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

.hero-headline .hl-2 {
    display: block;
    font-size: clamp(48px, 7vw, 100px);
    font-style: italic;
    color: var(--blush);
    opacity: 0;
    animation: revealUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.78s forwards;
}

.hero-headline .hl-3 {
    display: block;
    font-size: clamp(14px, 1.9vw, 30px);
    font-style: normal;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.26em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    margin-top: 8px;
    opacity: 0;
    animation: revealUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    animation: revealUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.05s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(235, 60, 39, 0.3);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(235, 60, 39, 0.45);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.22);
    cursor: pointer;
    border-radius: 2px;
    backdrop-filter: blur(8px);
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.38);
    transform: translateY(-2px);
}

.hero-rating-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    opacity: 0;
    animation: fadeSlideLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
}

.rating-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    min-width: 120px;
}

.rating-num {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.rating-stars {
    color: var(--blush);
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.rating-count {
    font-size: 8.5px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
}

.years-box {
    background: var(--red);
    border-radius: 12px;
    padding: 13px 18px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 6px 22px rgba(235, 60, 39, 0.35);
}

.years-num {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.years-label {
    font-size: 8.5px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.hero-scroll {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.6s forwards;
}

.scroll-label {
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
}

.scroll-bar {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollAnim 2.4s ease-in-out infinite 1.8s;
}

@keyframes scrollAnim {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 1;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }
}

.hero-rule {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right,
            transparent 0%,
            var(--red) 20%,
            var(--blush) 50%,
            var(--red) 80%,
            transparent 100%);
    opacity: 0.55;
    z-index: 10;
}

.marquee-bar {
    background: var(--red);
    height: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 22s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    flex-shrink: 0;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.marquee-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

@media (max-width: 992px) {
    :root {
        --navbar-h: 68px;
        --marquee-h: 42px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--navbar-h);
        right: -100%;
        width: 260px;
        height: calc(100% - var(--navbar-h));
        background: var(--red);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 24px 40px;
        gap: 22px;
        transition: right 0.35s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        z-index: 5000;
        overflow-y: auto;
        margin-left: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 15px;
        width: 100%;
    }

    .nav-links a.nav-outline {
        width: fit-content;
    }
}

@media (max-width: 820px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding: 0 28px 32px;
        gap: 18px;
    }

    .hero-rating-card {
        flex-direction: row;
        align-items: flex-start;
    }

    .rating-box,
    .years-box {
        min-width: 96px;
        padding: 12px 14px;
    }

    .rating-num {
        font-size: 30px;
    }

    .years-num {
        font-size: 22px;
    }

    .hero-brand-vert {
        display: none;
    }

    .hero-pills {
        top: 14px;
        right: 14px;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 540px) {
    :root {
        --marquee-h: 38px;
    }

    .hero-content {
        padding: 0 18px 24px;
    }

    .hero-headline .hl-1,
    .hero-headline .hl-2 {
        font-size: clamp(40px, 11vw, 60px);
    }

    .hero-headline .hl-3 {
        font-size: clamp(12px, 4vw, 20px);
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-glass {
        justify-content: center;
    }

    .hero-rating-card {
        gap: 8px;
    }

    .rating-box,
    .years-box {
        padding: 10px 12px;
        min-width: 80px;
    }

    .rating-num {
        font-size: 26px;
    }

    .years-num {
        font-size: 18px;
    }

    .marquee-item {
        padding: 0 18px;
    }

    .marquee-text {
        font-size: 9px;
    }
}

.celebrity-section {
    padding: 3rem 2rem 4rem;
    text-align: center;
    background: var(--cream);
    overflow: visible;
}

.celebrity-section .section-eyebrow {
    display: block;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.50rem;
}

.celebrity-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--brown-dk);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.celebrity-section .section-sub {
    font-size: 14px;
    color: var(--brown);
    margin-bottom: 2.5rem;
}

.carousel-outer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.cel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
    z-index: 10;
}

.cel-arrow:hover {
    background: #f0ede0;
    transform: scale(1.08);
}

.cel-arrow:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.carousel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, width 0.3s;
}

.carousel-dots span.on {
    background: #3E2723;
    transform: scale(1.2);
    width: 20px;
    border-radius: 4px;
}

.carousel {
    width: 100%;
    overflow: hidden;
    height: 450px;
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.6s ease;
    height: 100%;
}

.card {
    flex-shrink: 0;
    height: 300px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.55s ease, opacity 0.55s ease, box-shadow 0.55s ease;
    opacity: 0.35;
    transform: scale(0.72);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.card.active {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    z-index: 5;
}

.card.level-1 {
    transform: scale(0.92);
    opacity: 0.55;
    z-index: 3;
}

.card.level-2 {
    transform: scale(0.78);
    opacity: 0.3;
    z-index: 1;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.lightbox.open {
    display: flex;
}

.lb-img-wrap {
    max-width: 80vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img-wrap img {
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    user-select: none;
}

.lb-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-arrow:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.08);
}

.lb-arrow:active {
    transform: scale(0.95);
}

.lb-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
}

.lb-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lb-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-family: sans-serif;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .celebrity-section {
        padding: 3.5rem 1rem 2.5rem;
    }

    .celebrity-section .section-title {
        font-size: clamp(1.4rem, 5vw, 1.9rem);
    }

    .celebrity-section .section-sub {
        font-size: 13px;
    }

    .carousel {
        height: 320px;
    }

    .card {
        height: 200px;
        width: 140px;
    }

    .cel-arrow {
        width: 34px;
        height: 34px;
        font-size: 15px;
        flex-shrink: 0;
    }

    .lb-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .lb-img-wrap {
        max-width: 92vw;
    }

    .lightbox {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .celebrity-section {
        padding: 3rem 0.5rem 2rem;
    }

    .carousel {
        height: 280px;
    }

    .card {
        height: 170px;
        width: 120px;
    }

    .card.active {
        transform: scale(1.2);
    }

    .carousel-dots span {
        width: 6px;
        height: 6px;
    }
}


.cake-section {
    padding: 40px 20px;
    text-align: center;
}

.section-header .tag-btn {
    border: 1px solid #3E2723;
    padding: 8px 20px;
    border-radius: 30px;
    background: transparent;
    margin-bottom: 20px;
    font-size: 14px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section-header h2 span {
    color: #EB3C27;
    letter-spacing: 3px;
}

.section-header p {
    max-width: 650px;
    margin: auto;
    color: #8F7265;
    font-size: 16px;
    line-height: 1.6;
}

.cake-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.cake-card {
    text-align: center;
    transition: 0.3s;
}

.cake-img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 2px solid #8F7265;
    padding: 10px;
    margin: auto;
    overflow: hidden;
    transition: 0.4s;
}

.cake-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: 0.4s;
}

.cake-card:hover .cake-img {
    transform: scale(1.05);
    border-color: #EB3C27;
}

.cake-card:hover img {
    transform: scale(1.1);
}

.cake-card h3 {
    margin-top: 20px;
    font-size: 22px;
    color: #8F7265;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 768px) {
    .cake-section {
        padding: 40px 16px;
    }

    .cake-section .section-header h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .section-header p {
        font-size: 14px;
        padding: 0 8px;
    }

    .cake-container {
        gap: 28px;
        margin-top: 36px;
    }

    .cake-img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .cake-container {
        gap: 20px;
    }

    .cake-img {
        width: 140px;
        height: 140px;
        padding: 7px;
    }
}

.featured-section {
    position: relative;
    padding: 40px 20px;
    text-align: center;
    background: #F1F0E2;
    overflow: hidden;
}

.featured-section>* {
    position: relative;
    z-index: 1;
}

.bg-cream::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background: repeating-radial-gradient(circle,
            #ede7d9 0px,
            #ede7d9 20px,
            #f6f1e7 20px,
            #f6f1e7 40px);
}

.featured-section h2 {
    color: #8F7265;
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 20px;
}

.featured-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.featured-card {
    width: 300px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.featured-card img {
    width: 100%;
    display: block;
    transition: 0.4s;
}

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

.card-info {
    padding: 15px;
}

.card-info h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.card-info p {
    color: #EB3C27;
    font-weight: 600;
}

@media (max-width: 768px) {
    .featured-section {
        padding: 40px 16px;
    }

    .featured-section h2 {
        font-size: 26px;
    }

    .featured-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 28px;
    }

    .featured-card {
        width: 100%;
        max-width: 340px;
    }
}

@media (max-width: 480px) {
    .featured-card {
        max-width: 100%;
    }
}

.story-section {
    position: relative;
    padding: 80px 40px;
    background: #ECD8DC;
    overflow: hidden;
}

.section-divider {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
}

.section-divider svg {
    width: 100%;
    height: 100px;
    display: block;
}

.section-divider.top {
    top: 0;
}

.section-divider.bottom {
    bottom: 0;
    transform: rotate(180deg);
}

.story-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.story-left {
    flex: 1;
}

.tag {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #8F7265;
    background: #EDCDC2;
    margin-bottom: 20px;
}

.story-left h2 {
    font-size: 38px;
    font-family: 'Playfair Display', serif;
}

.story-left h2 span {
    color: #EB3C27;
}

.story-text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 20px 0;
}

.story-text .line {
    width: 5px;
    height: 80px;
    background: #EB3C27;
}

.story-left p {
    color: #333;
    line-height: 1.6;
}

.story-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #EB3C27;
    color: #F1F0E2;
    border-radius: 10px;
    margin-top: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.story-btn:hover {
    background: #8F7265;
    color: #F1F0E2;
    transform: translateY(-2px);
}

.story-btn:active {
    transform: scale(0.95);
}

.story-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-box img {
    width: 280px;
    height: 280px;
    border-radius: 25px;
}

.story-right {
    flex: 1;
}

.story-right p {
    margin-bottom: 15px;
    color: #333;
}

.offer-box {
    margin-top: 30px;
    border: 1px solid #8F7265;
    padding: 20px;
    border-radius: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.offer-box .icon {
    font-size: 28px;
}

@media (max-width: 992px) {
    .story-section {
        padding: 80px 24px;
    }

    .story-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
    }

    .story-left,
    .story-right,
    .story-center {
        flex: none;
        width: 100%;
        max-width: 520px;
    }

    .story-left h2 {
        font-size: 30px;
    }

    .story-text {
        justify-content: center;
    }

    .story-text .line {
        display: none;
    }

    .image-box img {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .story-section {
        padding: 70px 20px;
    }

    .story-left h2 {
        font-size: 26px;
    }

    .image-box img {
        width: 200px;
        height: 200px;
    }

    .section-divider svg {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .story-section {
        padding: 60px 16px;
    }

    .image-box img {
        width: 170px;
        height: 170px;
        border-radius: 18px;
    }
}

.franchise-section {
    padding: 4rem 4rem;
    background: var(--red);
    position: relative;
    overflow: hidden;
}

.franchise-bg-word {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--serif);
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -2px;
    user-select: none;
}

.franchise-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
}

.fr-eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    display: block;
}

.fr-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.fr-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 24px;
}

.fr-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.fr-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.fr-perk-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.fr-action-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.fr-investment {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 18px 28px;
    text-align: center;
}

.fr-inv-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 6px;
}

.fr-inv-value {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.fr-apply-btn {
    background: #fff;
    color: var(--red);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 40px;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.fr-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .franchise-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fr-sub {
        max-width: 100%;
    }

    .fr-perks {
        justify-content: center;
    }

    .fr-action-box {
        width: 100%;
    }

    .fr-apply-btn {
        width: 100%;
    }
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    padding: 20px;
    overflow-y: auto;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    position: relative;
    transform: translateY(40px) scale(0.95);
    transition: 0.35s ease;
    margin: auto;
}

.popup-overlay.active .popup-container {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--brown-dk);
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: 0.25s ease;
    flex-shrink: 0;
}

.popup-close:hover {
    background: var(--red);
    color: #fff;
    transform: rotate(90deg);
}

.form-right {
    background: var(--white);
    border-radius: 24px;
    padding: 1.8rem;
    border: 0.5px solid rgba(143, 114, 101, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.form-right h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--brown-dk);
    margin-bottom: 0.4rem;
}

.form-right>p {
    font-size: 13px;
    color: var(--brown);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.form-field {
    margin-bottom: 0.50rem;
    position: relative;
}

.form-field i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--brown-lt);
    pointer-events: none;
}

.form-field.textarea-field i {
    top: 16px;
    transform: none;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 11px 14px 11px 38px;
    border-radius: 12px;
    border: 1px solid rgba(143, 114, 101, 0.2);
    background: var(--cream);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: var(--brown-dk);
    outline: none;
    transition: 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}

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

.form-field textarea {
    resize: none;
    min-height: 70px;
    padding-top: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fixed-investment {
    display: flex;
    align-items: center;
    padding: 11px 14px 11px 38px;
    border-radius: 12px;
    border: 1px solid rgba(143, 114, 101, 0.2);
    background: var(--cream);
    min-height: 44px;
    position: relative;
    box-sizing: border-box;
}

.fixed-investment i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--brown-lt);
}

.fixed-value {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.fixed-value .label {
    font-size: 10px;
    color: var(--brown-lt);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fixed-value .value {
    font-size: 12px;
    font-weight: 500;
    color: var(--brown-dk);
    margin-top: 2px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--brown-dk);
    color: var(--cream);
    border: none;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s ease;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: var(--red);
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 11px;
    color: var(--brown-lt);
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.form-note i {
    font-size: 10px;
    color: var(--red);
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}

.form-success .success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.form-success .success-icon i {
    font-size: 28px;
    color: var(--red);
}

.form-success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--brown-dk);
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 13px;
    color: var(--brown);
}

@media (max-width: 768px) {

    .popup-overlay {
        padding: 18px;
        align-items: center;
        overflow-y: auto;
    }

    .popup-container {
        max-width: 460px;
        width: 100%;
        margin: 22px auto;
    }

    .popup-close {
        top: -12px;
        right: -4px;
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .form-right {
        padding: 1.25rem;
        border-radius: 20px;
    }

    .form-right h3 {
        font-size: 24px;
    }

    .form-right>p {
        font-size: 12px;
        margin-bottom: 0.8rem;
    }

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

    .form-field input,
    .form-field select,
    .form-field textarea {
        font-size: 13px;
        padding: 12px 14px 12px 38px;
    }

    .form-field.textarea-field textarea {
        min-height: 65px;
    }

    .fixed-investment {
        padding: 12px 14px 12px 38px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 12px;
    }
}

@media (max-width: 540px) {

    .popup-overlay {
        padding: 0;
        align-items: flex-end;
        overflow-y: auto;
    }

    .popup-container {
        max-width: 100%;
        width: 100%;
        margin: 0;
        transform: translateY(100%) scale(1);
    }

    .popup-overlay.active .popup-container {
        transform: translateY(0) scale(1);
    }

    .popup-close {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 34px;
        height: 34px;
        font-size: 12px;
        background: var(--cream);
        color: var(--brown-dk);
        box-shadow: none;
        border: 1px solid rgba(143, 114, 101, 0.2);
    }

    .form-right {
        border-radius: 24px;
        padding: 1.2rem 1.0rem 1.4rem;
        max-height: 92svh;
        max-height: 92vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: 2rem;
    }

    .form-right::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        border-radius: 10px;
        background: rgba(143, 114, 101, 0.25);
        margin: 0 auto 1.2rem;
    }

    .form-right h3 {
        font-size: 22px;
        padding-right: 36px;
    }

    .form-right>p {
        font-size: 12px;
        margin-bottom: 0.75rem;
    }

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

    .form-field {
        margin-bottom: 0.45rem;
    }

    .form-field input,
    .form-field textarea {
        font-size: 14px;
        padding: 13px 14px 13px 38px;
        border-radius: 10px;
    }

    .fixed-investment {
        padding: 13px 14px 13px 38px;
        border-radius: 10px;
    }

    .form-field.textarea-field textarea {
        min-height: 60px;
    }

    .submit-btn {
        padding: 15px;
        font-size: 13px;
        border-radius: 36px;
        margin-top: 0.75rem;
    }

    .form-note {
        margin-top: 0.6rem;
        font-size: 10px;
        margin-bottom: 0.5rem;
    }

    .form-success {
        padding: 1.5rem 0.5rem;
    }

    .form-success .success-icon {
        width: 60px;
        height: 60px;
    }

    .form-success .success-icon i {
        font-size: 22px;
    }

    .form-success h4 {
        font-size: 20px;
    }
}

@media (max-width: 360px) {

    .form-right {
        padding: 1.0rem 0.8rem 1.2rem;
    }

    .form-right h3 {
        font-size: 20px;
    }

    .form-field {
        margin-bottom: 0;
        position: relative;
    }

    .form-field input,
    .form-field textarea {
        font-size: 14px;
        padding: 12px 12px 12px 36px;
    }

    .submit-btn {
        font-size: 12px;
        padding: 13px;
    }
}

.testi-section {
    padding: 80px 6%;
    background: var(--cream);
}

.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 44px;
    gap: 20px;
}

.testi-left {
    display: flex;
    flex-direction: column;
}

.testi-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.testi-eyebrow span {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ig-muted);
}

.testi-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ig-deep);
}

.testi-title em {
    font-style: italic;
    color: var(--ig-rose);
}

.rating-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--cream);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 50px;
    padding: 10px 20px;
}

.rating-pill-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: black;
    line-height: 1;
}

.rating-pill-stars {
    color: #F5B041;
    font-size: 14px;
}

.rating-pill-count {
    font-size: 12px;
    color: var(--brown-lt);
    margin-top: 2px;
}

.rating-sep {
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, 0.08);
}

.ts-slider-wrap {
    overflow: hidden;
    position: relative;
    margin: 0 -2%;
}

.ts-slider-wrap::before,
.ts-slider-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.ts-slider-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--cream), transparent);
}

.ts-slider-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--cream), transparent);
}

.ts-track {
    display: flex;
    gap: 16px;
    animation: tsScroll 38s linear infinite;
    width: max-content;
    padding: 8px 2% 16px;
}

.ts-track:hover {
    animation-play-state: paused;
}

@keyframes tsScroll {
    0% {
        transform: translateX(0);
    }

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

.ts-card {
    flex: 0 0 270px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ts-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ts-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

.ts-name {
    font-size: 13px;
    font-weight: 500;
    color: black;
}

.ts-date {
    font-size: 11px;
    color: var(--brown-lt);
}

.ts-stars {
    color: #F5B041;
    font-size: 13px;
}

.ts-text {
    font-size: 12px;
    color: var(--brown-lt);
    line-height: 1.65;
    flex: 1;
    font-weight: 300;
}

.ts-card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 11px;
    color: var(--brown-lt);
}

.gallery-section {
    padding: 60px 60px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1 / 0.75;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(143, 114, 101, 0.8);
    color: #fff;
    padding: 12px;
    font-size: 16px;
    transform: translateY(100%);
    transition: 0.4s ease;
}

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

.gallery-item:hover .overlay {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .gallery-section {
        padding: 50px 24px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 40px 16px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 28px;
    }

    .gallery-section .section-header h2 {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .gallery-item .overlay {
        transform: translateY(0);
        background: rgba(143, 114, 101, 0.65);
        font-size: 13px;
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }
}

:root {
    --ig-cream: #FAF6F1;
    --ig-blush: #F2D9CC;
    --ig-rose: #C9806A;
    --ig-deep: #3B2A2A;
    --ig-muted: #9C7F77;
    --ig-radius: 18px;
    --ig-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.ig-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 32px;
}

.ig-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
}

.ig-title-block {
    max-width: 560px;
}

.ig-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.ig-eyebrow span {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ig-muted);
}

.eyebrow-line {
    width: 38px;
    height: 1px;
    background: var(--ig-rose);
}

.ig-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ig-deep);
}

.ig-heading em {
    font-style: italic;
    color: var(--ig-rose);
}

.ig-sub {
    margin-top: 14px;
    font-size: 14px;
    color: var(--ig-muted);
    font-weight: 300;
    line-height: 1.7;
}

.ig-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 13px 28px;
    border: 1.5px solid var(--ig-rose);
    border-radius: 60px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ig-rose);
    letter-spacing: 0.06em;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.ig-follow-btn:hover {
    background: var(--ig-rose);
    color: #ffffff;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ig-card {
    position: relative;
    border-radius: var(--ig-radius);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    background: #E8D8D0;
    opacity: 0;
    transform: translateY(30px);
    animation: igFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    box-shadow: 0 4px 24px rgba(59, 42, 42, 0.07);
}

.ig-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 42, 42, 0.16);
}

.ig-card:nth-child(1) {
    animation-delay: 0.05s;
}

.ig-card:nth-child(2) {
    animation-delay: 0.15s;
}

.ig-card:nth-child(3) {
    animation-delay: 0.25s;
}

.ig-card:nth-child(4) {
    animation-delay: 0.32s;
}

.ig-card:nth-child(5) {
    animation-delay: 0.39s;
}

.ig-card:nth-child(6) {
    animation-delay: 0.46s;
}

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

.ig-card.reel {
    aspect-ratio: 9 / 16;
    grid-row: span 2;
}

.ig-card.post {
    aspect-ratio: 1 / 1;
}

.ig-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(30, 15, 10, 0.78) 0%,
            rgba(30, 15, 10, 0.10) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    gap: 10px;
    z-index: 2;
}

.ig-card:hover .card-overlay {
    opacity: 1;
}

.overlay-caption {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.93);
    font-weight: 300;
    line-height: 1.55;
    margin: 0;
}

.overlay-cta {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.type-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}

.type-badge.reel-badge {
    background: rgba(0, 0, 0, 0.42);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.type-badge.post-badge {
    background: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.reel-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.play-triangle {
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 16px solid rgba(255, 255, 255, 0.9);
    margin-left: 4px;
}

.ig-card:hover .reel-play {
    background: rgba(255, 255, 255, 0.32);
    transform: translate(-50%, -50%) scale(1.12);
}

.ig-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--ig-radius);
    padding: 2px;
    background: var(--ig-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 3;
    pointer-events: none;
}

.ig-card:hover::before {
    opacity: 1;
}

.ig-cta-strip {
    margin-top: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--ig-blush), transparent);
    flex: 1;
    min-width: 60px;
}

.cta-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--ig-muted);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.cta-insta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: var(--ig-gradient);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 13px 28px;
    border-radius: 60px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 24px rgba(220, 39, 67, 0.28);
}

.cta-insta-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(220, 39, 67, 0.38);
}

@media (max-width: 992px) {
    .ig-section {
        padding: 40px 24px;
    }

    .ig-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 36px;
    }

    .ig-title-block {
        max-width: 100%;
    }

    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .ig-card.reel:nth-child(5) {
        display: none;
    }
}

@media (max-width: 768px) {
    .ig-section {
        padding: 36px 16px;
    }

    .ig-heading {
        font-size: clamp(28px, 7vw, 40px);
    }

    .ig-follow-btn {
        padding: 11px 22px;
        font-size: 12px;
    }

    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .card-overlay {
        opacity: 1;
        background: linear-gradient(to top,
                rgba(30, 15, 10, 0.65) 0%,
                transparent 55%);
    }

    .ig-cta-strip {
        margin-top: 28px;
        gap: 12px;
    }

    .cta-label {
        font-size: 14px;
    }

    .cta-insta-link {
        padding: 11px 22px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ig-section {
        padding: 30px 12px;
    }

    .ig-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .ig-heading {
        font-size: 26px;
    }

    .ig-card.reel:nth-child(7) {
        display: none;
    }

    .ig-card.reel {
        aspect-ratio: 3 / 4;
    }

    .ig-cta-strip {
        flex-direction: column;
        gap: 10px;
    }

    .cta-divider {
        display: none;
    }
}

.fab-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.fab-main {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EB3C27, #ff7a5c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(235, 60, 39, 0.5);
    transition: all 0.3s ease;
}

.fab-main:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(235, 60, 39, 0.7);
}

.fab-options {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: black;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s ease;
}

.fab-main i {
    transition: transform 0.3s ease;
}

.fab-container.active .fab-main i {
    transform: rotate(180deg);
}

.fab-item {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.fab-item:nth-child(1) {
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

.fab-item:nth-child(2) {
    box-shadow: 0 6px 20px rgba(111, 66, 193, 0.5);
}

.fab-item.whatsapp {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.fab-container.active .fab-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.fab-container.active .fab-item:nth-child(1) {
    transition-delay: 0.1s;
}

.fab-container.active .fab-item:nth-child(2) {
    transition-delay: 0.2s;
}

.fab-container.active .fab-item:nth-child(3) {
    transition-delay: 0.3s;
}

.fab-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .fab-container {
        bottom: 18px;
        right: 16px;
    }

    .fab-main {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .fab-item {
        font-size: 13px;
        padding: 9px 14px;
    }

    .fab-options {
        bottom: 68px;
    }
}

.premium-footer {
    background: #EB3C27;
    color: #F1F0E2;
    padding-top: 70px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 8%;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
}

.footer-col h3 {
    margin-bottom: 15px;
}

.footer-col p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col i {
    color: #F1F0E2;
    font-size: 16px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #F1F0E2;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #EDCDC2;
    padding-left: 5px;
}

.newsletter {
    display: flex;
    margin-top: 10px;
}

.newsletter input {
    padding: 10px;
    border: none;
    outline: none;
    flex: 1;
    border-radius: 5px 0 0 5px;
}

.newsletter button {
    padding: 10px 15px;
    border: none;
    background: #8F7265;
    color: #F1F0E2;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.socials {
    margin-top: 15px;
}

.socials a {
    margin-right: 10px;
    font-size: 18px;
    color: #F1F0E2;
    transition: 0.3s;
}

.socials a:hover {
    color: #EDCDC2;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    font-size: 14px;
}

.branch-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 9999;
    cursor: pointer;
}

@media (min-width: 480px) {
    .branch-modal {
        justify-content: center;
        align-items: center;
    }
}

.branch-box {
    background: #fff;
    width: 100%;
    max-width: 420px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    cursor: default;
    display: flex;
    flex-direction: column;
    max-height: 92vh;
}

@media (min-width: 480px) {
    .branch-box {
        border-radius: 20px;
        max-height: 88vh;
    }
}

.box-header {
    background: #EB3C27;
    padding: 10px 10px 10px;
    position: relative;
    text-align: center;
    flex-shrink: 0;
}

.drag-handle {
    width: 36px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    margin: 0 auto 14px;
    display: block;
}

@media (min-width: 480px) {
    .drag-handle {
        display: none;
    }
}

.icon-wrap {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 22px;
}

.box-header h2 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 3px;
}

.box-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    margin: 0;
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.22);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    line-height: 1;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.35);
}

.box-body {
    padding: 16px;
    overflow-y: auto;
    flex: 1;
}

.branch-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 13px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fff;
    cursor: pointer;
    margin-bottom: 9px;
    transition: border-color 0.15s, background 0.15s;
    width: 100%;
    text-align: left;
}

.branch-item:hover {
    border-color: #EB3C27;
    background: #fff8f7;
}

.branch-icon {
    width: 36px;
    height: 36px;
    background: #FAECE7;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 17px;
}

.branch-name {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin: 0 0 1px;
}

.branch-city {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.wa-icon {
    margin-left: auto;
    color: #25D366;
    font-size: 20px;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding: 0 6%;
    }
}

@media (max-width: 600px) {
    .premium-footer {
        padding-top: 48px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 6%;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer-col h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .footer-col p {
        font-size: 13px;
        margin-top: 10px;
    }

    .newsletter input {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 16px;
        margin-top: 28px;
    }
}

@media (max-width: 992px) {

    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .hero-section,
    .celebrity-section,
    .cake-section,
    .featured-section,
    .story-section,
    .franchise-section,
    .testimonial-section,
    .gallery-section,
    .ig-section {
        max-width: 100%;
        overflow-x: hidden;
    }
}