.nav-links.is-open {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 248, 225, 0.96);
    border-radius: 18px;
    padding: 1.4rem;
    box-shadow: 0 16px 34px rgba(63, 63, 70, 0.2);
    display: grid;
    gap: 1rem;
    text-align: right;
    min-width: 220px;
    margin: 0;
}

.nav-right {
    position: relative;
}
:root {
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --font-script: 'Great Vibes', cursive;
    --max-width: 1180px;
    --spacing-section: clamp(4rem, 8vw, 6rem);
    --color-cream: #FFF8E1;
    --color-mustard: #EAB308;
    --color-mustard-bright: #FACC15;
    --color-sage: #65A30D;
    --color-terracotta: #C2410C;
    --color-charcoal: #3F3F46;
    --color-soft-shadow: rgba(194, 65, 12, 0.16);
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-charcoal);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

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

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

ul {
    margin: 0;
    padding: 0;
}
.copy-constrained {
    max-width: 52ch;
    margin: 0;
}

.section {
    width: min(100% - 3rem, var(--max-width));
    margin: 0 auto;
    padding: var(--spacing-section) 0;
}

.section-heading {
    text-align: center;
    margin-bottom: clamp(2rem, 6vw, 3.5rem);
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.section-heading p {
    max-width: 45ch;
    margin: 0 auto;
    opacity: 0.8;
}

.navbar {
    width: min(100% - 3rem, var(--max-width));
    margin: 0 auto;
    padding: 1.35rem 0;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: clamp(1.5rem, 5vw, 3rem);
    position: relative;
    z-index: 2;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.8rem, 2vw, 1.4rem);
    text-align: left;
}

.nav-logo img {
    width: clamp(120px, 14vw, 190px);
    display: block;
    flex-shrink: 0;
}

.nav-branding {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-family: var(--font-heading);
    color: var(--color-charcoal);
    line-height: 1.1;
}

.brand-hindi,
.brand-english {
    font-weight: 700;
}

.brand-hindi {
    font-size: 1.05rem;
    letter-spacing: 0.05em;
}

.brand-english {
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
}

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.2rem);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: clamp(1rem, 3vw, 1.8rem);
    font-weight: 600;
}

.lang-toggle {
    border: 1px solid rgba(194, 65, 12, 0.28);
    background: rgba(255, 248, 225, 0.7);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-weight: 600;
    color: var(--color-terracotta);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
    background: rgba(255, 248, 225, 0.95);
    box-shadow: 0 10px 24px rgba(194, 65, 12, 0.18);
    transform: translateY(-2px);
}

.menu-toggle {
    border: none;
    background: rgba(194, 65, 12, 0.12);
    border-radius: 12px;
    padding: 0.55rem;
    display: inline-flex;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-terracotta);
    border-radius: 999px;
    transition: transform 0.3s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    background: rgba(194, 65, 12, 0.2);
    transform: translateY(-1px);
}

.nav-links a {
    position: relative;
    padding-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-mustard));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.nav-links a.active {
    color: var(--color-terracotta);
}

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

@media (min-width: 901px) {
    .nav-links a.active::after {
        transform: scaleX(0);
    }

    .nav-links a.active {
        color: inherit;
    }
}

.hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(180deg, rgba(234, 179, 8, 0.18) 0%, rgba(255, 248, 225, 0.95) 70%), url('img/hero-texture.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('img/spice-pattern.png');
    background-size: 220px;
    background-repeat: repeat;
    opacity: 0.08;
    pointer-events: none;
}

.hero-content {
    width: min(100% - 3rem, var(--max-width));
    margin: auto;
    padding-bottom: clamp(3rem, 10vw, 5rem);
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 6vw, 4.5rem);
    position: relative;
    z-index: 1;
}

.hero-secondary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(1.8rem, 5vw, 3.2rem);
    align-items: center;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.7rem, 6vw, 3.9rem);
    margin-bottom: 0.75rem;
    line-height: 1.08;
}

.hero-text p {
    max-width: none;
    opacity: 0.85;
}

.hero-text .copy-constrained {
    max-width: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(194, 65, 12, 0.12);
    color: var(--color-terracotta);
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 12px 24px rgba(194, 65, 12, 0.16);
}

.hero-highlights {
    display: grid;
    gap: 0.9rem;
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: none;
}

.hero-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(255, 248, 225, 0.8);
    border: 1px solid rgba(194, 65, 12, 0.14);
    box-shadow: 0 16px 28px rgba(63, 63, 70, 0.08);
}

.hero-highlight-icon {
    font-size: 1.35rem;
    line-height: 1;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 3vw, 1.8rem);
    align-items: start;
    margin-top: 0;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0;
    align-items: center;
}

.hero-ctas .btn {
    width: fit-content;
}

.btn {
    padding: 0.85rem 1.7rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-mustard), var(--color-mustard-bright));
    color: #2f2f32;
    box-shadow: 0 12px 30px rgba(234, 179, 8, 0.25);
}

.btn-outline {
    border: 2px solid rgba(194, 65, 12, 0.3);
    color: var(--color-terracotta);
    background: rgba(255, 248, 225, 0.55);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 36px rgba(194, 65, 12, 0.2);
}

.hero-image {
    position: relative;
    max-width: 520px;
    width: 100%;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.hero-image-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    overflow: hidden;
    border: 6px solid rgba(255, 248, 225, 0.7);
    box-shadow: 0 32px 48px rgba(63, 63, 70, 0.22);
    background: #fde68a;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-badge {
    position: absolute;
    bottom: 7%;
    left: -3.5rem;
    background: rgba(255, 248, 225, 0.95);
    color: var(--color-terracotta);
    padding: 0.85rem 1.2rem;
    border-radius: 18px;
    font-weight: 600;
    box-shadow: 0 22px 40px rgba(194, 65, 12, 0.22);
    letter-spacing: 0.01em;
    z-index: 2;
}

.jar-shadow {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: -14%;
    height: 35%;
    background: radial-gradient(circle, rgba(63, 63, 70, 0.32) 0%, rgba(63, 63, 70, 0) 70%);
    filter: blur(14px);
    z-index: -1;
}

.story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2.1rem, 6vw, 4rem);
    align-items: center;
    background: rgba(255, 255, 255, 0.88);
    padding: calc(var(--spacing-section) + 2rem) clamp(1.5rem, 5vw, 3rem) var(--spacing-section);
    border-radius: 34px;
    backdrop-filter: blur(6px);
    position: relative;
    border: 1px solid rgba(234, 179, 8, 0.28);
    overflow: hidden;
    margin-top: clamp(2.5rem, 7vw, 4rem);
}

.story::before {
    content: '';
    position: absolute;
    inset: clamp(-1.5rem, -3vw, -0.75rem);
    background: radial-gradient(circle at top left, rgba(234, 179, 8, 0.16), transparent 56%), radial-gradient(circle at bottom right, rgba(101, 163, 13, 0.16), transparent 60%);
    border-radius: inherit;
    pointer-events: none;
    filter: blur(12px);
    z-index: -1;
}

.story-media img {
    border-radius: 30px 30px 12px 30px;
    box-shadow: 0 22px 45px rgba(63, 63, 70, 0.25);
    max-width: clamp(230px, 32vw, 320px);
}

.story-copy h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
}

.handwritten {
    margin-top: 1.5rem;
    font-family: var(--font-script);
    font-weight: 500;
    color: var(--color-terracotta);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.handwritten::after {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--color-terracotta);
    opacity: 0.6;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: clamp(2.2rem, 4vw, 3.2rem);
    align-items: stretch;
}

.signature-card {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    background: linear-gradient(120deg, rgba(234, 179, 8, 0.16), rgba(255, 248, 225, 0.92));
    border-radius: 28px;
    padding: clamp(1.8rem, 4vw, 3rem);
    box-shadow: 0 20px 38px rgba(234, 179, 8, 0.18);
}

.signature-card.reverse .signature-media {
    order: 2;
    justify-self: end;
}

.signature-card.reverse .signature-body {
    order: 1;
}

.signature-media {
    justify-self: start;
}

.signature-media img {
    border-radius: 24px 24px 12px 24px;
    box-shadow: 0 18px 32px rgba(63, 63, 70, 0.22);
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.signature-body {
    display: grid;
    gap: 1rem;
}

.signature-body h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin: 0.2rem 0;
}

.signature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(194, 65, 12, 0.8);
    background: rgba(194, 65, 12, 0.14);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    justify-self: start;
    align-self: start;
    max-width: max-content;
}

.signature-benefits {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.signature-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: rgba(63, 63, 70, 0.85);
}

.signature-benefits span {
    font-size: 1.1rem;
    line-height: 1.3;
}

.signature-body .btn {
    justify-self: start;
}

.pickle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

.pickle-card {
    border-radius: 26px;
    overflow: hidden;
    background: #fff9e8;
    box-shadow: 0 18px 35px var(--color-soft-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pickle-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.pickle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(194, 65, 12, 0.18);
}

.card-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.card-content h3 {
    font-family: var(--font-heading);
    margin: 0;
    font-size: 1.35rem;
}

.card-note {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(63, 63, 70, 0.6);
}

.card-description {
    margin: 0;
    color: rgba(63, 63, 70, 0.8);
}

.order-btn {
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.9rem;
    padding-inline: 1.35rem;
}

.values {
    text-align: center;
}

.value-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-card {
    background: linear-gradient(180deg, rgba(101, 163, 13, 0.08), rgba(255, 248, 225, 0.92));
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 30px rgba(101, 163, 13, 0.18);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonials {
    position: relative;
    background: linear-gradient(120deg, rgba(234, 179, 8, 0.18), rgba(194, 65, 12, 0.12));
    border-radius: 40px;
    padding: var(--spacing-section) clamp(1.5rem, 4vw, 3rem);
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -12%;
    left: 10%;
    right: 10%;
    height: 70%;
    background: radial-gradient(circle, rgba(255, 248, 225, 0.9) 0%, rgba(255, 248, 225, 0) 72%);
    border-radius: 999px;
    pointer-events: none;
    filter: blur(28px);
    opacity: 0.6;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.5rem, 5vw, 3rem);
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 248, 225, 0.9);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 18px 30px rgba(63, 63, 70, 0.18);
    position: relative;
    overflow: hidden;
}

.quote-mark {
    font-size: 3rem;
    color: rgba(194, 65, 12, 0.35);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: var(--font-heading);
}

.testimonial-card p {
    margin-top: 2.2rem;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-footer img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(194, 65, 12, 0.2);
}

.testimonial-footer h4 {
    margin: 0;
    font-size: 1.05rem;
}

.testimonial-footer span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.cta {
    text-align: center;
    position: relative;
}

.cta::before {
    content: none;
}

.cta-content {
    background: rgba(255, 248, 225, 0.94);
    border-radius: 32px;
    padding: clamp(2.4rem, 5vw, 3.6rem);
    box-shadow: 0 28px 60px rgba(63, 63, 70, 0.18);
    display: grid;
    gap: 1.75rem;
    justify-items: center;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    inset: clamp(0.75rem, 3vw, 1.5rem);
    border-radius: inherit;
    background: radial-gradient(circle at 30% 25%, rgba(234, 179, 8, 0.22), transparent 65%), radial-gradient(circle at 70% 20%, rgba(101, 163, 13, 0.24), transparent 70%);
    filter: blur(26px);
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
}

.cta-content h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.6rem);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    width: 100%;
}

.contact-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 600;
}

.contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    border-radius: 20px;
    background: rgba(234, 179, 8, 0.2);
    transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(234, 179, 8, 0.22);
}

.origin-badge {
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(194, 65, 12, 0.85);
}

.footer {
    background: linear-gradient(180deg, rgba(194, 65, 12, 0.12), rgba(255, 248, 225, 0.94));
    padding: 2.4rem 1.5rem;
    color: rgba(63, 63, 70, 0.82);
    font-size: 0.92rem;
}

.footer-inner {
    width: min(100% - 3rem, var(--max-width));
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
}

.footer-brand-block {
    display: grid;
    gap: 0.35rem;
}


.footer-logo {
    width: clamp(140px, 18vw, 200px);
    justify-self: start;
}

.footer-tagline {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(194, 65, 12, 0.75);
}

.footer-actions {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.footer-actions a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 248, 225, 0.85);
    border: 1px solid rgba(194, 65, 12, 0.22);
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.footer-actions a:hover,
.footer-actions a:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(194, 65, 12, 0.22);
}

.footer-meta {
    display: grid;
    gap: 0.35rem;
    text-align: right;
}

.footer-meta a {
    color: var(--color-terracotta);
    font-weight: 600;
}

.footer-origin {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(194, 65, 12, 0.7);
    font-size: 0.82rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.floating-whatsapp {
    position: fixed;
    bottom: clamp(1.5rem, 5vw, 2.8rem);
    right: clamp(1.5rem, 5vw, 2.8rem);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.35);
    z-index: 99;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 22px 50px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .navbar {
        gap: 1.2rem;
    }

    .nav-logo {
        gap: 0.9rem;
    }

    .nav-logo img {
        width: clamp(120px, 32vw, 160px);
    }

    .nav-right {
        gap: 0.85rem;
    }

    .nav-links.is-open {
        display: grid;
    }

    .lang-toggle {
        padding: 0.4rem 0.85rem;
        font-size: 0.9rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text p,
    .hero-text h1 {
        margin-inline: auto;
    }

    .hero-badge,
    .hero-highlights,
    .hero-actions {
        margin-inline: auto;
    }

    .hero-secondary {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .hero-highlights li {
        justify-content: center;
        text-align: left;
    }

    .hero-actions {
        align-items: center;
    }

    .hero-image {
        max-width: min(440px, 100%);
        gap: 1.1rem;
    }

    .hero-image-badge {
        position: static;
        padding: 0.75rem 1rem;
        box-shadow: 0 16px 34px rgba(194, 65, 12, 0.2);
    }

    .hero-ctas {
        justify-content: center;
        width: 100%;
        margin-top: 1rem;
    }

    .hero-ctas .btn {
        width: min(100%, 260px);
    }

    .story,
    .testimonials,
    .cta-content,
    .signature-card {
        border-radius: 24px;
    }

    .signature-body .btn {
        justify-self: center;
        width: fit-content;
    }

    .signature-card .signature-media {
        justify-self: center;
    }

    .lang-toggle {
        font-size: 0.85rem;
    }
}

@media (max-width: 620px) {
    body {
        line-height: 1.65;
    }

    .section {
        width: min(100% - 2rem, var(--max-width));
    }

    .hero {
        min-height: 85vh;
    }

    .hero-secondary {
        gap: 1.4rem;
    }

    .hero-highlights {
        gap: 0.8rem;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-image-badge {
        font-size: 0.95rem;
    }

    .signature-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .signature-card .signature-media {
        justify-self: stretch;
    }

    .signature-body .btn {
        justify-self: center;
    }

    .order-btn {
        align-self: center;
    }

    .hero-image,
    .story-media img,
    .signature-media img,
    .pickle-card img {
        width: 100%;
        max-width: 100%;
    }

    .pickle-card img {
        height: auto;
    }

    .pickle-grid {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .footer-inner {
        width: min(100% - 2rem, var(--max-width));
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-brand-block {
        justify-items: center;
    }

    .footer-logo {
        justify-self: center;
    }

    .footer-meta {
        text-align: center;
    }

    .floating-whatsapp {
        width: 54px;
        height: 54px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .floating-whatsapp svg {
        width: 24px;
        height: 24px;
    }
}
