/* =====================================================
   GEFCON FOODZ AND EVENTZ
   Main stylesheet
===================================================== */

:root {
    --brown-950: #241006;
    --brown-900: #321306;
    --brown-800: #4b1f09;
    --brown-700: #682b0b;
    --brown-600: #7c3610;
    --brown-500: #934514;

    --orange-700: #c84c00;
    --orange-600: #e65b00;
    --orange-500: #f36d0a;
    --orange-400: #ff8731;
    --orange-300: #ffa765;

    --cream-50: #fffdf9;
    --cream-100: #fff8ee;
    --cream-200: #f9ebd8;
    --cream-300: #f1dac0;

    --white: #ffffff;
    --black: #121212;
    --text: #3b302a;
    --muted: #776a62;

    --green: #22c55e;
    --whatsapp: #25d366;

    --heading-font: "Cormorant Garamond", Georgia, serif;
    --body-font: "Manrope", Arial, sans-serif;

    --container: 1240px;

    --shadow-small:
        0 10px 35px rgba(60, 24, 4, 0.08);

    --shadow-medium:
        0 20px 60px rgba(60, 24, 4, 0.14);

    --shadow-large:
        0 30px 100px rgba(35, 12, 1, 0.22);

    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 28px;
}


/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--cream-50);
    color: var(--text);
    font-family: var(--body-font);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--brown-950);
    font-family: var(--heading-font);
    line-height: 1.08;
}

::selection {
    background: var(--orange-500);
    color: var(--white);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 120px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}


/* =====================================================
   PAGE LOADER
===================================================== */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background: var(--cream-50);
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: grid;
    justify-items: center;
    gap: 22px;
}

.loader-content img {
    width: 110px;
    height: 110px;
    border-radius: 24px;
    object-fit: contain;
    background: #fff;
    box-shadow: var(--shadow-small);
}

.loader-content span {
    position: relative;
    width: 110px;
    height: 3px;
    overflow: hidden;
    border-radius: 99px;
    background: var(--cream-300);
}

.loader-content span::after {
    position: absolute;
    inset: 0;
    content: "";
    width: 45%;
    background: var(--orange-500);
    animation: loaderMove 1s infinite ease-in-out;
}

@keyframes loaderMove {
    from {
        transform: translateX(-120%);
    }

    to {
        transform: translateX(260%);
    }
}


/* =====================================================
   SCROLL PROGRESS
===================================================== */

.scroll-progress {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--orange-600),
        var(--orange-300)
    );
}


/* =====================================================
   TOPBAR
===================================================== */

.topbar {
    position: relative;
    z-index: 1002;
    background: var(--brown-950);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.76rem;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.topbar-contact {
    display: flex;
    gap: 24px;
}

.topbar-contact a,
.topbar-message {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar i {
    color: var(--orange-400);
}


/* =====================================================
   HEADER AND NAVIGATION
===================================================== */

.site-header {
    position: absolute;
    z-index: 1000;
    top: 38px;
    left: 0;
    width: 100%;
    color: var(--white);
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.site-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(255, 253, 249, 0.97);
    color: var(--brown-950);
    box-shadow: 0 12px 40px rgba(42, 16, 3, 0.1);
    backdrop-filter: blur(16px);
}

.navbar {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand-logo {
    width: 59px;
    height: 59px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 15px;
    background: var(--white);
    object-fit: contain;
}

.site-header.scrolled .brand-logo {
    border-color: var(--cream-300);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    color: currentColor;
    font-family: var(--heading-font);
    font-size: 1.58rem;
    letter-spacing: 0.07em;
}

.brand-copy span {
    margin-top: 5px;
    color: var(--orange-400);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(15px, 1.5vw, 28px);
}

.desktop-nav a {
    position: relative;
    padding: 35px 0;
    color: inherit;
    font-size: 0.79rem;
    font-weight: 700;
    white-space: nowrap;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 26px;
    left: 0;
    height: 2px;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    background: var(--orange-500);
    transition: transform 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-box {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
}

.site-header.scrolled .language-box {
    border-color: var(--cream-300);
}

.language-box i {
    color: var(--orange-400);
    font-size: 0.8rem;
}

.language-box select {
    width: 43px;
    border: 0;
    outline: 0;
    appearance: none;
    background: transparent;
    color: inherit;
    font-size: 0.72rem;
    font-weight: 800;
    cursor: pointer;
}

.language-box option {
    color: var(--brown-950);
}

.nav-order-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 43px;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--orange-500);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.nav-order-button:hover {
    transform: translateY(-2px);
    background: var(--orange-600);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 0;
    border-radius: 8px;
    background: var(--orange-500);
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}


/* =====================================================
   BUTTONS
===================================================== */

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background: var(--orange-500);
    color: var(--white);
    box-shadow: 0 15px 40px rgba(243, 109, 10, 0.28);
}

.button-primary:hover {
    background: var(--orange-600);
}

.button-outline {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.button-outline:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--brown-950);
}

.button-dark {
    background: var(--brown-950);
    color: var(--white);
}

.button-dark:hover {
    background: var(--orange-600);
}


/* =====================================================
   EYEBROWS AND HEADINGS
===================================================== */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--orange-600);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 38px;
    height: 2px;
    content: "";
    background: currentColor;
}

.eyebrow.light {
    color: var(--orange-300);
}

.section-heading {
    margin-bottom: 55px;
}

.section-heading.centered {
    max-width: 770px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading.centered .eyebrow::after {
    width: 38px;
    height: 2px;
    content: "";
    background: currentColor;
}

.section-heading h2 {
    margin-bottom: 20px;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.section-heading p {
    margin-bottom: 0;
    color: var(--muted);
}

.section-heading.light h2,
.section-heading.light p {
    color: var(--white);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    min-height: 880px;
    overflow: hidden;
    background: var(--brown-950);
    color: var(--white);
}

.hero-slider,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    z-index: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    background-position: center;
    background-size: cover;
    transition:
        opacity 0.9s ease,
        visibility 0.9s ease,
        transform 7s ease;
}

.hero-slide.active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            to top,
            rgba(26, 9, 1, 0.6),
            transparent 40%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 130px;
}

.hero-copy {
    max-width: 730px;
}

.hero-copy h1,
.hero-copy h2 {
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(3.7rem, 6.4vw, 6.6rem);
    letter-spacing: -0.025em;
}

.hero-copy p {
    max-width: 650px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.04rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-trust {
    display: flex;
    gap: 42px;
    margin-top: 50px;
}

.hero-trust div {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    color: var(--orange-400);
    font-family: var(--heading-font);
    font-size: 1.9rem;
    line-height: 1;
}

.hero-trust span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.7rem;
    font-weight: 600;
}

.hero-dish-label {
    position: absolute;
    z-index: 3;
    right: 5vw;
    bottom: 82px;
    display: flex;
    min-width: 285px;
    flex-direction: column;
    padding: 18px 22px;
    border-left: 3px solid var(--orange-500);
    background: rgba(35, 13, 2, 0.73);
    backdrop-filter: blur(12px);
}

.hero-dish-label span {
    color: var(--orange-300);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-dish-label strong {
    margin-top: 4px;
    font-family: var(--heading-font);
    font-size: 1.25rem;
}

.hero-controls {
    position: absolute;
    z-index: 10;
    bottom: 70px;
    left: max(20px, calc((100% - var(--container)) / 2));
    display: flex;
    align-items: center;
    gap: 17px;
}

.hero-arrow {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    transition: 0.25s ease;
}

.hero-arrow:hover {
    border-color: var(--orange-500);
    background: var(--orange-500);
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.46);
    transition: 0.3s ease;
}

.hero-dot.active {
    width: 32px;
    background: var(--orange-500);
}

.scroll-down {
    position: absolute;
    z-index: 10;
    right: max(20px, calc((100% - var(--container)) / 2));
    bottom: 210px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: rotate(90deg);
    transform-origin: right center;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}


/* =====================================================
   WELCOME STRIP
===================================================== */

.welcome-strip {
    position: relative;
    z-index: 20;
    margin-top: -1px;
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.welcome-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.welcome-grid article {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 125px;
    padding: 25px 28px;
    border-right: 1px solid var(--cream-200);
}

.welcome-grid article:last-child {
    border-right: 0;
}

.welcome-icon {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 14px;
    background: var(--cream-100);
    color: var(--orange-600);
    font-size: 1.25rem;
}

.welcome-grid strong,
.welcome-grid span {
    display: block;
}

.welcome-grid strong {
    margin-bottom: 3px;
    color: var(--brown-950);
    font-family: var(--heading-font);
    font-size: 1.16rem;
}

.welcome-grid span {
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.5;
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(243, 109, 10, 0.07),
            transparent 25%
        ),
        var(--cream-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
    gap: clamp(65px, 8vw, 120px);
}

.about-visual {
    position: relative;
    min-height: 710px;
}

.about-pattern {
    position: absolute;
    top: 40px;
    left: -45px;
    width: 330px;
    height: 330px;
    opacity: 0.3;
    background-image:
        radial-gradient(var(--orange-500) 1.2px, transparent 1.2px);
    background-size: 15px 15px;
}

.ceo-slider {
    position: relative;
    z-index: 2;
    height: 640px;
    overflow: hidden;
    border-radius: 260px 260px 28px 28px;
    box-shadow: var(--shadow-large);
}

.ceo-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.06);
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease,
        transform 4s ease;
}

.ceo-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.ceo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ceo-card {
    position: absolute;
    z-index: 5;
    right: -38px;
    bottom: 60px;
    display: flex;
    min-width: 265px;
    flex-direction: column;
    padding: 22px 25px;
    border-left: 4px solid var(--orange-500);
    background: var(--white);
    box-shadow: var(--shadow-medium);
}

.ceo-card span {
    color: var(--orange-600);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ceo-card strong {
    margin-top: 5px;
    color: var(--brown-950);
    font-family: var(--heading-font);
    font-size: 1.5rem;
}

.ceo-card small {
    color: var(--muted);
}

.ceo-slide-controls {
    position: absolute;
    z-index: 6;
    right: 6px;
    bottom: 5px;
    display: flex;
    gap: 8px;
}

.ceo-slide-controls button {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--brown-950);
    color: var(--white);
    transition: 0.25s ease;
}

.ceo-slide-controls button:hover {
    background: var(--orange-500);
}

.experience-badge {
    position: absolute;
    z-index: 5;
    top: 100px;
    left: -45px;
    display: grid;
    width: 130px;
    height: 130px;
    place-items: center;
    align-content: center;
    border: 8px solid var(--cream-50);
    border-radius: 50%;
    background: var(--orange-500);
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.experience-badge strong {
    font-family: var(--heading-font);
    font-size: 2.1rem;
    line-height: 1;
}

.experience-badge span {
    max-width: 90px;
    margin-top: 5px;
    font-size: 0.61rem;
    line-height: 1.3;
}

.about-copy h2 {
    margin-bottom: 25px;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.about-copy p {
    color: var(--muted);
}

.about-copy .lead {
    color: var(--brown-700);
    font-family: var(--heading-font);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.45;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 24px;
    margin: 30px 0;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--brown-950);
    font-size: 0.76rem;
    font-weight: 700;
}

.about-points i {
    color: var(--orange-500);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--orange-500);
    color: var(--brown-950);
    font-size: 0.75rem;
    font-weight: 800;
}

.text-link i {
    color: var(--orange-500);
}


/* =====================================================
   QUOTE DIVIDER
===================================================== */

.quote-divider {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(42, 14, 2, 0.88),
            rgba(42, 14, 2, 0.9)
        ),
        url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=2000&q=85")
        center / cover fixed;
    color: var(--white);
    text-align: center;
}

.quote-divider span {
    color: var(--orange-400);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.4em;
}

.quote-divider h2 {
    margin: 12px 0;
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5.4rem);
}

.quote-divider p {
    max-width: 730px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
}


/* =====================================================
   VALUES
===================================================== */

.values-section {
    background:
        linear-gradient(
            to bottom,
            var(--cream-100),
            var(--cream-50)
        );
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    padding: 42px 30px;
    border: 1px solid var(--cream-300);
    border-radius: var(--radius-medium);
    background: var(--white);
    box-shadow: var(--shadow-small);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        color 0.35s ease;
}

.value-card::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    background: var(--orange-500);
    transition: transform 0.35s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card.featured {
    transform: translateY(-20px);
    border-color: var(--brown-800);
    background: var(--brown-950);
}

.value-card.featured h3,
.value-card.featured p {
    color: var(--white);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 25px;
    color: rgba(108, 45, 12, 0.08);
    font-family: var(--heading-font);
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1;
}

.value-card.featured .value-number {
    color: rgba(255, 255, 255, 0.08);
}

.value-icon {
    display: grid;
    width: 68px;
    height: 68px;
    margin-bottom: 30px;
    place-items: center;
    border-radius: 18px;
    background: var(--cream-100);
    color: var(--orange-600);
    font-size: 1.5rem;
}

.value-card.featured .value-icon {
    background: var(--orange-500);
    color: var(--white);
}

.value-card h3 {
    margin-bottom: 18px;
    font-size: 1.65rem;
}

.value-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.85rem;
}


/* =====================================================
   SERVICES
===================================================== */

.services-section {
    overflow: hidden;
    background:
        linear-gradient(
            120deg,
            rgba(37, 13, 2, 0.98),
            rgba(77, 29, 5, 0.97)
        );
    color: var(--white);
}

.services-section::before {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.services-section::after {
    position: absolute;
    top: -100px;
    right: -40px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.split-heading {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    align-items: end;
    gap: 70px;
}

.split-heading h2 {
    margin-bottom: 0;
    color: var(--white);
}

.split-heading p {
    color: rgba(255, 255, 255, 0.66);
}

.services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    overflow: hidden;
    border-radius: var(--radius-medium);
    background: var(--white);
    box-shadow: 0 20px 60px rgba(15, 5, 1, 0.24);
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-9px);
}

.service-image {
    position: relative;
    height: 225px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    transition: background-size 0.4s ease;
}

.service-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            to top,
            rgba(45, 15, 2, 0.6),
            transparent 70%
        );
}

.service-image span {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--heading-font);
    font-size: 3rem;
}

.service-content {
    position: relative;
    min-height: 275px;
    padding: 35px 30px 30px;
}

.service-icon {
    position: absolute;
    top: -32px;
    left: 28px;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 5px solid var(--white);
    border-radius: 50%;
    background: var(--orange-500);
    color: var(--white);
    font-size: 1.25rem;
}

.service-content h3 {
    margin-top: 15px;
    margin-bottom: 14px;
    font-size: 1.55rem;
}

.service-content p {
    color: var(--muted);
    font-size: 0.81rem;
}

.service-content a {
    display: inline-flex;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--orange-500);
    color: var(--orange-600);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}


/* =====================================================
   DISHES
===================================================== */

.dishes-section {
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(243, 109, 10, 0.08),
            transparent 24%
        ),
        var(--cream-50);
}

.menu-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 45px;
}

.menu-filter {
    min-height: 43px;
    padding: 0 20px;
    border: 1px solid var(--cream-300);
    border-radius: 99px;
    background: var(--white);
    color: var(--brown-800);
    font-size: 0.71rem;
    font-weight: 800;
    transition: 0.25s ease;
}

.menu-filter:hover,
.menu-filter.active {
    border-color: var(--orange-500);
    background: var(--orange-500);
    color: var(--white);
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dish-card {
    overflow: hidden;
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-medium);
    background: var(--white);
    box-shadow: var(--shadow-small);
    transition:
        opacity 0.3s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.dish-card.hidden-dish {
    display: none;
}

.dish-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.08);
}

.dish-image span {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 12px;
    border-radius: 99px;
    background: rgba(36, 16, 6, 0.85);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.dish-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 25px;
}

.dish-content h3 {
    margin-bottom: 8px;
    font-size: 1.38rem;
}

.dish-content p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.6;
}

.dish-content a {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--cream-100);
    color: var(--orange-600);
    transition: 0.25s ease;
}

.dish-content a:hover {
    background: var(--orange-500);
    color: var(--white);
}

.menu-bottom-action {
    margin-top: 45px;
    text-align: center;
}


/* =====================================================
   PROCESS
===================================================== */

.process-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(37, 12, 2, 0.9),
            rgba(37, 12, 2, 0.93)
        ),
        url("https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=2000&q=84")
        center / cover fixed;
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.process-card {
    position: relative;
    padding: 45px 33px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.process-card:last-child {
    border-right: 0;
}

.process-card > span {
    position: absolute;
    top: 15px;
    right: 25px;
    color: rgba(255, 255, 255, 0.08);
    font-family: var(--heading-font);
    font-size: 4.5rem;
    font-weight: 700;
}

.process-card > i {
    margin-bottom: 28px;
    color: var(--orange-400);
    font-size: 2.2rem;
}

.process-card h3 {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 1.45rem;
}

.process-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.77rem;
}


/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials-section {
    background: var(--cream-100);
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: center;
    gap: 75px;
}

.testimonial-intro h2 {
    margin-bottom: 20px;
    font-size: clamp(2.8rem, 5vw, 4.3rem);
}

.testimonial-intro > p {
    color: var(--muted);
}

.testimonial-summary {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 32px 0;
}

.testimonial-summary > strong {
    color: var(--brown-950);
    font-family: var(--heading-font);
    font-size: 3.6rem;
    line-height: 1;
}

.testimonial-summary span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.7rem;
}

.stars {
    color: #f4a322;
    font-size: 0.78rem;
}

.testimonial-controls {
    display: flex;
    gap: 9px;
}

.testimonial-controls button {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--cream-300);
    border-radius: 50%;
    background: var(--white);
    color: var(--brown-950);
    transition: 0.25s ease;
}

.testimonial-controls button:hover {
    border-color: var(--orange-500);
    background: var(--orange-500);
    color: var(--white);
}

.testimonial-window {
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(.22, .61, .36, 1);
}

.testimonial-card {
    position: relative;
    min-width: calc(50% - 12px);
    margin-right: 24px;
    padding: 42px 34px;
    border: 1px solid var(--cream-300);
    border-radius: var(--radius-medium);
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.quote-icon {
    position: absolute;
    top: 28px;
    right: 30px;
    color: var(--cream-300);
    font-size: 2.7rem;
}

.testimonial-card blockquote {
    margin: 27px 0;
    color: var(--brown-800);
    font-family: var(--heading-font);
    font-size: 1.23rem;
    font-style: italic;
    line-height: 1.55;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border-radius: 50%;
    background: var(--brown-950);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
}

.reviewer strong,
.reviewer span {
    display: block;
}

.reviewer strong {
    color: var(--brown-950);
    font-size: 0.75rem;
}

.reviewer span {
    color: var(--muted);
    font-size: 0.64rem;
}

.testimonial-note {
    width: min(calc(100% - 40px), var(--container));
    margin: 35px auto 0;
    color: var(--muted);
    font-size: 0.67rem;
    font-style: italic;
    text-align: center;
}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background:
        url("https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?auto=format&fit=crop&w=2000&q=85")
        center / cover;
    color: var(--white);
}

.final-cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(38, 13, 2, 0.96),
            rgba(86, 31, 4, 0.78)
        );
}

.final-cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 70px;
}

.final-cta h2 {
    max-width: 780px;
    margin-bottom: 16px;
    color: var(--white);
    font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.final-cta p {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    padding-top: 85px;
    background: #1b0b04;
    color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 65px;
}

.footer-logo {
    display: inline-flex;
    padding: 7px;
    border-radius: 16px;
    background: var(--white);
}

.footer-logo img {
    width: 105px;
    height: 105px;
    object-fit: contain;
}

.footer-brand p {
    max-width: 350px;
    margin: 24px 0;
    font-size: 0.77rem;
}

.social-links {
    display: flex;
    gap: 9px;
}

.social-links a {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    color: var(--white);
    transition: 0.25s ease;
}

.social-links a:hover {
    border-color: var(--orange-500);
    background: var(--orange-500);
}

.footer-column h3 {
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1.35rem;
}

.footer-column li + li {
    margin-top: 11px;
}

.footer-column li a {
    position: relative;
    font-size: 0.74rem;
    transition:
        color 0.25s ease,
        padding 0.25s ease;
}

.footer-column li a:hover {
    padding-left: 8px;
    color: var(--orange-400);
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact > a,
.footer-contact > div {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 17px;
    font-size: 0.74rem;
}

.footer-contact i {
    width: 18px;
    margin-top: 5px;
    color: var(--orange-400);
    text-align: center;
}

.footer-contact small {
    color: var(--orange-300);
}

.footer-bottom {
    display: flex;
    min-height: 75px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.67rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom strong {
    color: var(--orange-400);
}


/* =====================================================
   WHATSAPP CHATBOT
===================================================== */

.whatsapp-widget {
    position: fixed;
    z-index: 5000;
    right: 25px;
    bottom: 25px;
}

.whatsapp-launcher {
    position: relative;
    z-index: 3;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.38);
    font-size: 1.9rem;
    transition: transform 0.25s ease;
}

.whatsapp-launcher:hover {
    transform: scale(1.07);
}

.whatsapp-pulse {
    position: absolute;
    inset: -6px;
    z-index: -1;
    border: 2px solid rgba(37, 211, 102, 0.55);
    border-radius: 50%;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    width: max-content;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--brown-950);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    box-shadow: var(--shadow-small);
}

.whatsapp-chatbox {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: 355px;
    overflow: hidden;
    border-radius: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(25px) scale(0.96);
    transform-origin: bottom right;
    background: var(--white);
    box-shadow: 0 25px 90px rgba(35, 13, 2, 0.3);
    transition: 0.3s ease;
}

.whatsapp-chatbox.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbox-header {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    padding: 13px 17px;
    background: #075e54;
    color: var(--white);
}

.chatbox-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.chatbox-logo {
    width: 49px;
    height: 49px;
    padding: 3px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--white);
}

.chatbox-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
}

.chatbox-brand strong,
.chatbox-brand span {
    display: block;
}

.chatbox-brand strong {
    font-size: 0.78rem;
}

.chatbox-brand span {
    font-size: 0.6rem;
}

.chatbox-brand span i {
    color: #7cff9a;
    font-size: 0.45rem;
}

.chatbox-header > button {
    border: 0;
    background: transparent;
    color: var(--white);
}

.chatbox-body {
    min-height: 315px;
    padding: 18px;
    background:
        linear-gradient(
            rgba(236, 229, 221, 0.92),
            rgba(236, 229, 221, 0.92)
        ),
        radial-gradient(#aaa 0.6px, transparent 0.6px);
    background-size: auto, 12px 12px;
}

.chat-time {
    margin-bottom: 13px;
    color: #887c74;
    font-size: 0.58rem;
    text-align: center;
}

.chat-message {
    max-width: 85%;
    padding: 12px 13px 7px;
    border-radius: 0 11px 11px;
    background: var(--white);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.08);
}

.chat-message p {
    margin-bottom: 5px;
    color: #343434;
    font-size: 0.7rem;
    line-height: 1.45;
}

.chat-message > span {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    color: #829199;
    font-size: 0.54rem;
}

.chat-message > span i {
    color: #53bdeb;
}

.quick-chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
}

.quick-chat-options button {
    padding: 7px 10px;
    border: 1px solid rgba(7, 94, 84, 0.22);
    border-radius: 99px;
    background: var(--white);
    color: #075e54;
    font-size: 0.58rem;
    font-weight: 700;
}

.quick-chat-options button:hover {
    background: #dcf8c6;
}

.chatbox-footer {
    display: flex;
    gap: 8px;
    padding: 11px;
    background: #f3f3f3;
}

.chatbox-footer input {
    min-width: 0;
    flex: 1;
    padding: 11px 13px;
    border: 1px solid #e1e1e1;
    border-radius: 99px;
    outline: 0;
    font-size: 0.68rem;
}

.chatbox-footer input:focus {
    border-color: var(--whatsapp);
}

.chatbox-footer button {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #075e54;
    color: var(--white);
}


/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {
    position: fixed;
    z-index: 4000;
    right: 34px;
    bottom: 105px;
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    background: var(--brown-950);
    color: var(--white);
    box-shadow: var(--shadow-small);
    transition: 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =====================================================
   REVEAL ANIMATIONS
===================================================== */

.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal {
    transform: translateY(35px);
}

.reveal-left {
    transform: translateX(-45px);
}

.reveal-right {
    transform: translateX(45px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}


/* =====================================================
   RESPONSIVE: 1150PX
===================================================== */

@media (max-width: 1150px) {

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        z-index: 999;
        top: 0;
        right: 0;
        display: flex;
        width: min(88vw, 420px);
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        padding: 110px 40px 50px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        background: var(--brown-950);
        color: var(--white);
        transition: 0.35s ease;
    }

    .mobile-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .mobile-menu nav {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-family: var(--heading-font);
        font-size: 1.55rem;
    }

    .mobile-order {
        margin-top: 30px;
    }

    .about-grid {
        gap: 65px;
    }

    .ceo-card {
        right: -10px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-card.featured {
        transform: none;
    }

    .services-grid,
    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-card:nth-child(2) {
        border-right: 0;
    }

    .process-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: span 3;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-contact h3 {
        grid-column: span 2;
    }
}


/* =====================================================
   RESPONSIVE: 850PX
===================================================== */

@media (max-width: 850px) {

    .section {
        padding: 90px 0;
    }

    .topbar-contact a:last-child {
        display: none;
    }

    .hero {
        min-height: 800px;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: clamp(3rem, 11vw, 5rem);
    }

    .hero-dish-label,
    .scroll-down {
        display: none;
    }

    .hero-controls {
        bottom: 45px;
    }

    .welcome-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .welcome-grid article:nth-child(2) {
        border-right: 0;
    }

    .welcome-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--cream-200);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        width: min(100%, 580px);
        margin-inline: auto;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .final-cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        min-width: calc(100% - 5px);
    }
}


/* =====================================================
   RESPONSIVE: 650PX
===================================================== */

@media (max-width: 650px) {

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 75px 0;
    }

    .topbar {
        display: none;
    }

    .site-header {
        top: 0;
    }

    .navbar {
        min-height: 75px;
    }

    .brand-logo {
        width: 49px;
        height: 49px;
        border-radius: 12px;
    }

    .brand-copy strong {
        font-size: 1.25rem;
    }

    .brand-copy span {
        font-size: 0.5rem;
    }

    .nav-order-button {
        display: none;
    }

    .language-box {
        padding: 8px;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content {
        padding-top: 95px;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: clamp(2.85rem, 13vw, 4.3rem);
    }

    .hero-copy p {
        font-size: 0.89rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-trust {
        justify-content: space-between;
        gap: 12px;
    }

    .hero-trust strong {
        font-size: 1.45rem;
    }

    .hero-trust span {
        font-size: 0.58rem;
    }

    .hero-controls {
        left: 14px;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
    }

    .welcome-grid article {
        min-height: 100px;
        border-right: 0;
        border-bottom: 1px solid var(--cream-200);
    }

    .welcome-grid article:last-child {
        border-bottom: 0;
    }

    .about-visual {
        min-height: 560px;
    }

    .ceo-slider {
        height: 535px;
        border-radius: 180px 180px 22px 22px;
    }

    .experience-badge {
        top: 80px;
        left: -5px;
        width: 105px;
        height: 105px;
    }

    .ceo-card {
        right: 8px;
        bottom: 35px;
        min-width: 225px;
    }

    .about-copy h2,
    .section-heading h2,
    .testimonial-intro h2,
    .final-cta h2 {
        font-size: clamp(2.35rem, 11vw, 3.4rem);
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .quote-divider {
        background-attachment: scroll;
    }

    .values-grid,
    .services-grid,
    .dishes-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .process-card:last-child {
        border-bottom: 0;
    }

    .process-section {
        background-attachment: scroll;
    }

    .service-image,
    .dish-image {
        height: 235px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-contact {
        grid-column: auto;
        display: flex;
    }

    .footer-contact h3 {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
    }

    .whatsapp-widget {
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-chatbox {
        position: fixed;
        right: 12px;
        bottom: 87px;
        width: calc(100vw - 24px);
        max-width: 380px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .back-to-top {
        right: 24px;
        bottom: 92px;
    }
}


/* =====================================================
   REDUCED MOTION ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}




/* =========================================
   GEFCON MENU SUBSCRIPTION
========================================== */

.gefcon-subscription {
    position: relative;
    isolation: isolate;
    margin-top: 75px;
    padding: clamp(45px, 6vw, 80px);
    overflow: hidden;
    border: 1px solid rgba(238, 212, 182, 0.95);
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 253, 249, 0.98),
            rgba(255, 247, 236, 0.96)
        );
    box-shadow:
        0 30px 90px rgba(54, 20, 3, 0.13);
}

.subscription-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.subscription-glow-one {
    top: -180px;
    right: -150px;
    width: 430px;
    height: 430px;
    background:
        radial-gradient(
            circle,
            rgba(243, 109, 10, 0.18),
            rgba(243, 109, 10, 0)
        );
}

.subscription-glow-two {
    bottom: -190px;
    left: -170px;
    width: 420px;
    height: 420px;
    background:
        radial-gradient(
            circle,
            rgba(103, 45, 14, 0.13),
            rgba(103, 45, 14, 0)
        );
}

.subscription-heading {
    max-width: 810px;
    margin: 0 auto 48px;
    text-align: center;
}

.subscription-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 17px;
    color: #df5900;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.subscription-eyebrow::before,
.subscription-eyebrow::after {
    width: 34px;
    height: 2px;
    content: "";
    background: currentColor;
}

.subscription-eyebrow i {
    font-size: 0.72rem;
}

.subscription-heading h3 {
    margin: 0 0 17px;
    color: #211006;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.6rem, 5vw, 4.35rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
}

.subscription-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: #776961;
    font-size: 0.82rem;
    line-height: 1.85;
}

.subscription-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 25px;
}

.subscription-plan-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid #eed4b6;
    border-radius: 23px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 18px 55px rgba(54, 20, 3, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.subscription-plan-card:hover {
    transform: translateY(-9px);
    border-color: rgba(243, 109, 10, 0.5);
    box-shadow:
        0 30px 80px rgba(54, 20, 3, 0.16);
}

.subscription-plan-featured {
    border-color: rgba(243, 109, 10, 0.65);
    background:
        linear-gradient(
            145deg,
            #321408,
            #211006
        );
    color: rgba(255, 255, 255, 0.76);
    box-shadow:
        0 28px 85px rgba(44, 14, 2, 0.25);
}

.subscription-plan-featured:hover {
    border-color: #ff8731;
    box-shadow:
        0 38px 100px rgba(44, 14, 2, 0.35);
}

.subscription-popular-badge {
    position: absolute;
    top: 0;
    right: 32px;
    display: inline-flex;
    min-height: 35px;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    transform: translateY(-50%);
    border-radius: 99px;
    background: #f36d0a;
    color: #ffffff;
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    box-shadow:
        0 10px 28px rgba(243, 109, 10, 0.3);
}

.subscription-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 29px;
}

.subscription-plan-label {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 13px;
    border-radius: 99px;
    background: #fff1e2;
    color: #c44b00;
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.subscription-plan-featured .subscription-plan-label {
    background: rgba(255, 255, 255, 0.09);
    color: #ffab6e;
}

.subscription-plan-icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 15px;
    background: #fff7ec;
    color: #f36d0a;
    font-size: 1.25rem;
}

.subscription-plan-featured .subscription-plan-icon {
    background: rgba(255, 255, 255, 0.09);
    color: #ff8731;
}

.subscription-plan-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 20px;
}

.subscription-plan-title > div > span {
    display: block;
    margin-bottom: 6px;
    color: #df5900;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.subscription-plan-title h4 {
    margin: 0;
    color: #211006;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.9rem, 3vw, 2.65rem);
    line-height: 1.05;
}

.subscription-plan-featured .subscription-plan-title h4 {
    color: #ffffff;
}

.subscription-plan-featured
.subscription-plan-title > div > span {
    color: #ffab6e;
}

.subscription-saving {
    display: grid;
    min-width: 94px;
    min-height: 94px;
    flex: 0 0 auto;
    place-items: center;
    align-content: center;
    border: 6px solid #fff1e2;
    border-radius: 50%;
    background: #f36d0a;
    color: #ffffff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    line-height: 0.85;
    text-align: center;
    box-shadow:
        0 13px 32px rgba(243, 109, 10, 0.23);
}

.subscription-saving small {
    display: block;
    max-width: 65px;
    margin-top: 8px;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 0.47rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.subscription-plan-featured .subscription-saving {
    border-color: rgba(255, 255, 255, 0.14);
    background: #ffffff;
    color: #df5900;
}

.subscription-plan-description {
    margin: 0 0 25px;
    color: #776961;
    font-size: 0.73rem;
    line-height: 1.8;
}

.subscription-plan-featured
.subscription-plan-description {
    color: rgba(255, 255, 255, 0.65);
}

.subscription-benefits {
    display: grid;
    gap: 13px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.subscription-benefits li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 10px;
    color: #4d210b;
    font-size: 0.67rem;
    line-height: 1.55;
}

.subscription-benefits i {
    margin-top: 4px;
    color: #f36d0a;
}

.subscription-plan-featured
.subscription-benefits li {
    color: rgba(255, 255, 255, 0.76);
}

.subscription-plan-featured
.subscription-benefits i {
    color: #ff8731;
}

.subscription-button {
    display: inline-flex;
    width: 100%;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-top: auto;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.69rem;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.subscription-button:hover {
    transform: translateY(-3px);
}

.subscription-button-outline {
    border-color: #f36d0a;
    background: transparent;
    color: #c44b00;
}

.subscription-button-outline:hover {
    background: #f36d0a;
    color: #ffffff;
}

.subscription-button-primary {
    background: #f36d0a;
    color: #ffffff;
    box-shadow:
        0 14px 36px rgba(243, 109, 10, 0.25);
}

.subscription-button-primary:hover {
    background: #df5900;
}

.subscription-bottom-note {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 19px;
    margin-top: 28px;
    padding: 24px 27px;
    border: 1px solid #eed4b6;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.9);
}

.subscription-note-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 15px;
    background: #fff1e2;
    color: #f36d0a;
    font-size: 1.25rem;
}

.subscription-bottom-note strong {
    display: block;
    margin-bottom: 3px;
    color: #211006;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.28rem;
}

.subscription-bottom-note p {
    margin: 0;
    color: #776961;
    font-size: 0.64rem;
}

.subscription-menu-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c44b00;
    font-size: 0.63rem;
    font-weight: 800;
    white-space: nowrap;
}

.subscription-menu-link:hover {
    color: #f36d0a;
}

/* Subscription entrance animation */

.subscription-plan-card {
    opacity: 0;
    transform: translateY(35px);
}

.subscription-plan-card.subscription-visible {
    opacity: 1;
    transform: translateY(0);
}

.subscription-plan-card:nth-child(1) {
    transition-delay: 0.08s;
}

.subscription-plan-card:nth-child(2) {
    transition-delay: 0.18s;
}

/* Subscription selection feedback */

.subscription-plan-card.subscription-selected {
    border-color: #f36d0a;
    box-shadow:
        0 0 0 4px rgba(243, 109, 10, 0.1),
        0 30px 80px rgba(54, 20, 3, 0.18);
}

.subscription-plan-featured.subscription-selected {
    box-shadow:
        0 0 0 4px rgba(243, 109, 10, 0.2),
        0 38px 100px rgba(44, 14, 2, 0.36);
}

/* Responsive */

@media (max-width: 900px) {
    .subscription-plan-grid {
        grid-template-columns: 1fr;
    }

    .subscription-plan-card {
        max-width: 680px;
        margin-inline: auto;
    }

    .subscription-bottom-note {
        grid-template-columns: auto 1fr;
    }

    .subscription-menu-link {
        grid-column: 1 / -1;
        justify-content: center;
        min-height: 47px;
        border-radius: 9px;
        background: #fff1e2;
    }
}

@media (max-width: 600px) {
    .gefcon-subscription {
        margin-top: 55px;
        padding: 48px 18px 24px;
        border-radius: 21px;
    }

    .subscription-heading {
        margin-bottom: 37px;
    }

    .subscription-eyebrow::before,
    .subscription-eyebrow::after {
        width: 20px;
    }

    .subscription-heading h3 {
        font-size: clamp(2.25rem, 12vw, 3.25rem);
    }

    .subscription-plan-card {
        padding: 30px 21px;
        border-radius: 18px;
    }

    .subscription-card-top {
        margin-bottom: 24px;
    }

    .subscription-plan-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .subscription-saving {
        width: 88px;
        min-width: 88px;
        height: 88px;
        min-height: 88px;
    }

    .subscription-popular-badge {
        right: 20px;
    }

    .subscription-bottom-note {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        text-align: center;
    }

    .subscription-note-icon {
        margin-inline: auto;
    }

    .subscription-menu-link {
        grid-column: auto;
    }
}
