/* Reset */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mobile-only-link {
    display: none;
}

html {
    scroll-behavior: smooth;
}

/* Fonts */

@font-face {
    font-family: "Recoleta";
    src: url("../fonts/Recoleta-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Recoleta";
    src: url("../fonts/Recoleta-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Recoleta";
    src: url("../fonts/Recoleta-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Recoleta";
    src: url("../fonts/Recoleta-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Recoleta";
    src: url("../fonts/Recoleta-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Google Sans Flex";
    src: url("../fonts/GoogleSansFlex_24pt-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Google Sans Flex";
    src: url("../fonts/GoogleSansFlex_24pt-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Google Sans Flex";
    src: url("../fonts/GoogleSansFlex_24pt-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

/* Global */

body {
    background-color: #FEF7E5;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Top Strip */

.top-strip {
    width: 100%;
    height: 46px;
    background-color: #8BC53F;
    overflow: hidden;
}

.top-strip__track,
.bottom-strip__track {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    white-space: nowrap;
    padding-left: 15px;

    font-family: "Recoleta", serif;
    font-size: 16px;
    font-weight: 900;
    color: #063527;
}

/* Header */

.header {
    height: 82px;
    background-color: #FFFFFF;
    position: relative;
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__nav a {
    position: relative;
    z-index: 1;

    font-family: "Recoleta", serif;
    font-size: 1rem;
    font-weight: 900;
    color: #063527;
    text-decoration: none;

    transition: color 0.2s ease;
}

.header__nav a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;

    width: calc(100% + 1rem);
    height: 2rem;

    background-color: #063527;
    border-radius: 999px;

    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: -1;

    transition: opacity 0.2s ease;
}

.header__nav a:hover {
    color: #FFFFFF;
}

.header__nav a:hover::before {
    opacity: 1;
}

.header__menu-button {
    display: none;
}

/* Language Switcher */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;

    font-family: "Recoleta", serif;
    font-size: 1rem;
    font-weight: 900;
    color: #063527;
}

/* Logo */

.header__logo {
    position: absolute;
    left: calc(50% - 50px);
    top: 50%;

    transform: translate(-50%, -15%);
}

.header__logo img {
    display: block;
    width: 14vw;
    max-width: 15rem;
    min-width: 8rem;
    height: auto;
}

/* Hero */

.hero {
    background-color: #FEF7E5;
    padding-top: 30px;
    padding-bottom: 80px;
}

.hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero__content {
    width: 42%;
}

.hero__content h1 {
    font-family: "Recoleta", serif;
    font-size: clamp(2.4rem, 3.8vw, 4.5rem);
    font-weight: 900;
    line-height: 0.95;
    color: #063527;
    margin-bottom: 1.5rem;
}

.hero__content p {
    max-width: 35rem;

    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    font-weight: 700;
    line-height: 1.25;
    color: #063527;
    margin-bottom: 2rem;
}

.hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 3.2rem;
    padding: 0 2.2rem;

    background-color: #063527;
    border: 2px solid #063527;
    border-radius: 999px;

    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;

    transition: all 0.25s ease;
}

.hero__button:hover {
    background-color: #FFFFFF;
    color: #063527;
}

.hero__image {
    width: 55%;
    display: flex;
    justify-content: flex-end;
}

.hero__image img {
    display: block;
    width: 85%;
    max-width: 38rem;
    height: auto;
}

/* Juices */

.juices {
    background-color: #FEF7E5;
    padding: 10px 0 90px;
}

.juices__intro {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.juices__icon {
    display: block;
    width: 150px;
    height: auto;
    margin: 0 auto 1rem;
}

.juices__intro h2,
.jams__intro h2,
.about__intro h2,
.who-we-are__content h2,
.contact__intro h2 {
    font-family: "Recoleta", serif;
    font-size: clamp(3.5rem, 6vw, 5.8rem);
    font-weight: 900;
    line-height: 0.85;
    color: #063527;
}

.juices__intro h2 {
    margin-bottom: 1.4rem;
}

.juices__intro p,
.jams__intro p,
.about__intro p,
.contact__intro p {
    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: clamp(1rem, 1.25vw, 1.35rem);
    font-weight: 700;
    line-height: 1.25;
    color: #063527;
}

.juices__intro p {
    margin-bottom: 1.6rem;
}

.juices__packaging {
    font-family: "Google Sans Flex", Arial, sans-serif;
    color: #063527;
}

.juices__packaging > span {
    display: block;
    margin-bottom: 0.9rem;

    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
}

.juices__sizes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.juices__sizes strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 85px;
    height: 42px;
    padding: 0 1.2rem;

    background-color: #8BC53F;
    border-radius: 999px;

    font-size: 1rem;
    font-weight: 900;
    font-style: normal;
}

.juices__sizes i {
    font-style: normal;
    font-size: 1.2rem;
    font-weight: 900;
}

.juices__packaging em {
    display: block;

    font-size: 0.9rem;
    font-weight: 700;
    font-style: normal;
}

.juices__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.2rem;
    margin-top: 5rem;
}

.juice-card {
    text-align: center;
}

.juice-card__circle {
    position: relative;

    width: 209px;
    height: 209px;
    margin: 0 auto 1.5rem;

    background-color: #FFEEB2;
    border-radius: 50%;
}

.juice-card__circle img {
    position: absolute;
    left: 50%;
    bottom: -55px;

    display: block;
    width: 93px;
    height: 244px;
    object-fit: contain;

    transform: translateX(-50%);
    transition: transform 0.25s ease;
}

.juice-card:hover .juice-card__circle img {
    transform: translateX(-50%) scale(1.12);
}

.juice-card h3 {
    margin-top: 80px;
    margin-bottom: 0.8rem;

    font-family: "Recoleta", serif;
    font-size: clamp(1.5rem, 1.8vw, 2rem);
    font-weight: 900;
    line-height: 1;
    color: #063527;
}

.juice-card p {
    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    color: #063527;
}

/* Jams */

.jams {
    background-color: #FEF7E5;
    padding: 80px 0 90px;
}

.jams__intro {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.jams__intro h2 {
    margin-bottom: 1.5rem;
}

.jams__intro p {
    margin-bottom: 1.5rem;
}

.jams__packaging {
    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #063527;
}

.jams__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
}

.jam-card {
    text-align: center;
}

.jam-card__circle {
    position: relative;

    width: 209px;
    height: 209px;
    margin: 0 auto 1.5rem;

    background-color: #FFEEB2;
    border-radius: 50%;
}

.jam-card__circle img {
    position: absolute;
    left: 50%;
    bottom: -45px;

    display: block;
    width: 149px;
    height: 227px;
    object-fit: contain;

    transform: translateX(-50%);
    transition: transform 0.25s ease;
}

.jam-card:hover .jam-card__circle img {
    transform: translateX(-50%) scale(1.12);
}

.jam-card h3 {
    margin-top: 70px;
    margin-bottom: 0.8rem;

    font-family: "Recoleta", serif;
    font-size: clamp(1.5rem, 1.8vw, 2rem);
    font-weight: 900;
    line-height: 1;
    color: #063527;
}

.jam-card p {
    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    color: #063527;
}

/* About */

.about {
    background-color: #FEF7E5;
    padding: 100px 0;
}

.about__intro {
    max-width: 1100px;
    margin: 0 auto 70px;
    text-align: center;
}

.about__intro h2 {
    line-height: 0.9;
    margin-bottom: 2rem;
}

.about__intro p {
    max-width: 720px;
    margin: 0 auto;
}

.about__content {
    max-width: 1220px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about__left p {
    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.5;
    color: #063527;
    margin-bottom: 2rem;
}

.about__right h3 {
    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #063527;
    margin-bottom: 1.5rem;
}

.about__right ul {
    padding-left: 1.4rem;
}

.about__right li {
    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
    color: #063527;
    margin-bottom: 0.3rem;
}

/* Who We Are */

.who-we-are {
    background-color: #FEF7E5;
    padding: 90px 0 110px;
}

.who-we-are__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.who-we-are__image {
    display: flex;
    justify-content: center;
}

.who-we-are__image img {
    display: block;
    width: 100%;
    max-width: 562px;
    height: auto;
}

.who-we-are__content {
    max-width: 620px;
    padding-top: 50px;
}

.who-we-are__content h2 {
    margin-bottom: 2rem;
}

.who-we-are__content p {
    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    font-weight: 500;
    line-height: 1.5;
    color: #063527;
    margin-bottom: 1.4rem;
}

.who-we-are__content p:last-child {
    margin-bottom: 0;
}

/* Contact */

.contact {
    background-color: #FEF7E5;
    padding: 90px 0 110px;
}

.contact__intro {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
}

.contact__intro h2 {
    margin-bottom: 1.3rem;
    white-space: nowrap;
}

.contact__intro p {
    max-width: 760px;
    margin: 0 auto;
}

.contact__form {
    max-width: 590px;
    margin: 0 auto;
}

.contact__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact__field {
    margin-bottom: 0.8rem;
}

.contact__field label {
    display: block;
    margin-bottom: 0.45rem;

    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    color: #063527;
}

.contact__field input,
.contact__field textarea {
    display: block;
    width: 100%;

    background-color: #FFFFFF;
    border: 1px solid #063527;
    border-radius: 4px;
    outline: none;

    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #063527;

    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact__field input {
    height: 42px;
    padding: 0 0.9rem;
}

.contact__field textarea {
    height: 152px;
    padding: 0.9rem;
    resize: vertical;
}

.contact__field input:focus,
.contact__field textarea:focus {
    border-color: #8BC53F;
    box-shadow: 0 0 0 2px rgba(139, 197, 63, 0.25);
}

.contact__button {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 156px;
    height: 46px;
    margin: 1.4rem auto 0;
    padding: 0 2rem;

    background-color: #063527;
    border: 2px solid #063527;
    border-radius: 999px;
    cursor: pointer;

    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;

    transition: all 0.25s ease;
}

.contact__button:hover {
    background-color: #FFFFFF;
    color: #063527;
}

.contact__privacy {
    max-width: 520px;
    margin: 1rem auto 0;

    text-align: center;

    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.45;
    color: #063527;

    opacity: 0.8;
}

.contact__privacy-link {
    color: #063527;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact__privacy-link:hover {
    opacity: 1;
}


/* Locations */

.locations {
    background-color: #FEF7E5;
    padding: 90px 0 120px;
}

.locations__intro {
    max-width: 850px;
    margin: 0 auto 3.8rem;
    text-align: center;
}

.locations__intro h2 {
    font-family: "Recoleta", serif;
    font-size: clamp(3.5rem, 6vw, 5.8rem);
    font-weight: 900;
    line-height: 0.85;
    color: #063527;
    margin-bottom: 1.3rem;
}

.locations__intro p {
    max-width: 720px;
    margin: 0 auto;

    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: clamp(1rem, 1.25vw, 1.35rem);
    font-weight: 700;
    line-height: 1.25;
    color: #063527;
}

.locations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1210px;
    margin: 0 auto;
}

.location-card {
    min-height: 124px;
    padding: 24px 22px 20px;

    background-color: #063527;
    border-radius: 4px;
}

.location-card h3 {
    font-family: "Recoleta", serif;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    color: #8BC53F;
    margin-bottom: 1rem;
}

.location-card p {
    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.25;
    color: #FFFFFF;
}

/* Gallery */

.gallery {
    background-color: #FEF7E5;
    padding: 0 0 90px;
    overflow: hidden;
}

.gallery__wrapper {
    position: relative;
    width: 100%;
}

.gallery__track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.gallery__track::-webkit-scrollbar {
    display: none;
}

.gallery__item {
    flex: 0 0 auto;
    height: 455px;

    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.gallery__item img {
    display: block;
    height: 455px;
    width: auto;
    border-radius: 8px;
    object-fit: cover;
}

.gallery__button {
    position: absolute;
    top: 50%;
    z-index: 5;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #063527;
    border-radius: 50%;

    background-color: #063527;
    cursor: pointer;

    transform: translateY(-50%);

    transition: all 0.25s ease;
}

.gallery__button img {
    display: block;
    width: 34px;
    height: auto;

    transition: filter 0.25s ease;
}

.gallery__button:hover {
    background-color: #FEF7E5;
}

.gallery__button:hover img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(24%) saturate(1465%) hue-rotate(122deg) brightness(94%) contrast(97%);
}

.gallery__button--prev {
    left: 50px;
}

.gallery__button--next {
    right: 50px;
}

/* Gallery Modal */

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 999;

    display: none;
    align-items: center;
    justify-content: center;

    background-color: rgba(6, 53, 39, 0.92);
    padding: 40px;
}

.gallery-modal.is-open {
    display: flex;
}

.gallery-modal__content {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 92vw;
    max-height: 88vh;
}

.gallery-modal__image {
    display: block;
    max-width: 100%;
    max-height: 88vh;

    border-radius: 8px;
    object-fit: contain;

    opacity: 1;
    transition: opacity 0.25s ease;
}

.gallery-modal__image.is-changing {
    opacity: 0;
}

/* Modal Arrows */

.gallery-modal__button {
    position: absolute;
    top: 50%;
    z-index: 1000;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #063527;
    border-radius: 50%;

    background-color: #063527;
    cursor: pointer;

    transform: translateY(-50%);
    transition: all 0.25s ease;
}

.gallery-modal__button img {
    display: block;
    width: 34px;
    height: auto;

    transition: filter 0.25s ease;
}

.gallery-modal__button:hover {
    background-color: #FEF7E5;
}

.gallery-modal__button:hover img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(24%) saturate(1465%) hue-rotate(122deg) brightness(94%) contrast(97%);
}

.gallery-modal__button--prev {
    left: -90px;
}

.gallery-modal__button--next {
    right: -90px;
}

/* Close Button */

.gallery-modal__close {
    position: absolute;
    top: 28px;
    right: 36px;

    width: 48px;
    height: 48px;

    border: 2px solid #FFFFFF;
    border-radius: 50%;

    background-color: #FFFFFF;
    cursor: pointer;

    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: #063527;

    transition: all 0.25s ease;
}

.gallery-modal__close:hover {
    background-color: transparent;
    color: #FFFFFF;
}

/* Bottom Strip */

.bottom-strip {
    width: 100%;
    height: 46px;
    background-color: #8BC53F;
    overflow: hidden;
}



/* Footer */

.footer {
    position: relative;
    height: 425px;
    background-color: #063527;
    overflow: hidden;
}

.footer__inner {
    position: relative;
    height: 100%;
}

.footer__legal {
    position: absolute;
    left: 0;
    bottom: 43px;
}

.footer__copyright {
    margin-bottom: 8px;

    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #FFFFFF;
}

.footer__privacy {
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;

    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 3px;

    transition: opacity 0.25s ease;
}

.footer__privacy:hover {
    opacity: 0.75;
}

.footer__image {
    position: absolute;
    left: 50%;
    bottom: 0;

    display: block;
    width: 376px;
    height: auto;

    transform: translateX(-50%);
}

.footer__social {
    position: absolute;
    right: 0;
    bottom: 31px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__social-link {
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer__social-link:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

.footer__social-link img {
    display: block;
    width: 36px;
    height: 36px;
}

.footer__back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-right: 45px;

    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;

    transition: opacity 0.25s ease,
                transform 0.25s ease;
}

.footer__back-to-top::before {
    content: "↑";

    width: 30px;
    height: 30px;
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 50%;

    font-size: 0.9rem;
    line-height: 1;
}

.footer__back-to-top:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Privacy Modal */

.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;

    display: none;
    align-items: center;
    justify-content: center;

    background-color: rgba(6, 53, 39, 0.88);
    padding: 30px;
}

.privacy-modal.is-open {
    display: flex;
}

.privacy-modal__box {
    width: 100%;
    max-width: 760px;
    max-height: 92vh;

    display: flex;
    flex-direction: column;

    background-color: #FEF7E5;
    border-radius: 24px;
    overflow: hidden;
}

.privacy-modal__header {
    padding: 28px 40px 20px;
    border-bottom: 1px solid rgba(6, 53, 39, 0.15);
}

.privacy-modal__header h2 {
    font-family: "Recoleta", serif;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    color: #063527;
    margin-bottom: 0.6rem;
}

.privacy-modal__header p {
    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(6, 53, 39, 0.65);
}

.privacy-modal__content {
    padding: 24px 40px;
    overflow-y: auto;

    font-family: "Google Sans Flex", Arial, sans-serif;
    color: #063527;
}

.privacy-modal__content h3 {
    font-family: "Recoleta", serif;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.1;
    color: #063527;
    margin: 0 0 0.7rem;
}

.privacy-modal__content p {
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.45;
    margin-bottom: 1.2rem;
}

.privacy-modal__content ul {
    padding-left: 1.4rem;
    margin-bottom: 1.4rem;
}

.privacy-modal__content li {
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.45;
    margin-bottom: 0.35rem;
}

.privacy-modal__footer {
    padding: 20px 40px 30px;
    border-top: 1px solid rgba(6, 53, 39, 0.15);
    text-align: center;
}

.privacy-modal__close {
    min-width: 152px;
    height: 50px;

    background-color: #063527;
    border: 2px solid #063527;
    border-radius: 999px;
    cursor: pointer;

    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;

    transition: all 0.25s ease;
}

.privacy-modal__close:hover {
    background-color: #FEF7E5;
    color: #063527;
}

.privacy-modal__content a {
    color: #063527;
    text-decoration: underline;
    text-underline-offset: 3px;

    transition: opacity 0.25s ease;
}

.privacy-modal__content a:hover {
    opacity: 0.75;
}

/* Responsive - Mobile Header */

@media (max-width: 768px) {

    .top-strip {
        height: 28px;
    }

    .top-strip__track {
        justify-content: flex-start;
        gap: 18px;
        padding: 0 12px;

        font-size: 9px;
    }

    .header {
        height: 128px;
    }

    .header .container {
        padding: 0 18px;
    }

    .header__inner {
        justify-content: center;
    }

    .header__logo {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .header__logo img {
        width: 200px;
        min-width: 0;
        max-width: none;
    }

    .header__nav {
        display: none;
    }

    .header__menu-button {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);

        width: 36px;
        height: 36px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;

        border: none;
        background: none;
        cursor: pointer;
        padding: 0;
    }

    .header__menu-button span {
        display: block;
        width: 22px;
        height: 2px;

        background-color: #063527;
        border-radius: 999px;
    }
}

/* Responsive - Mobile Hero */

@media (max-width: 768px) {

    .hero {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .hero__inner {
        display: flex;
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .hero__content {
        width: 100%;
        order: 2;
    }

    .hero__content h1 {
        max-width: 330px;
        margin: 0 auto 1rem;

        font-size: 2.25rem;
        line-height: 0.95;
    }

    .hero__content p {
        max-width: 320px;
        margin: 0 auto 1.4rem;

        font-size: 0.92rem;
        line-height: 1.35;
        font-weight: 700;
    }

    .hero__button {
        min-height: 42px;
        padding: 0 1.5rem;

        font-size: 0.85rem;
    }

    .hero__image {
        width: 100%;
        order: 1;
        justify-content: center;
    }

    .hero__image img {
        width: 92%;
        max-width: 330px;
    }
}

/* Responsive - Mobile Juices */

@media (max-width: 768px) {

    .juices {
        padding: 10px 0 60px;
    }

    .juices__intro {
        max-width: 100%;
    }

    .juices__icon {
        width: 80px;
        margin-bottom: 0.8rem;
    }

    .juices__intro h2 {
        font-size: 3.3rem;
        line-height: 0.9;
        margin-bottom: 1rem;
    }

    .juices__intro p {
        max-width: 320px;
        margin: 0 auto 1.3rem;

        font-size: 0.9rem;
        line-height: 1.4;
    }

    .juices__sizes {
        gap: 0.7rem;
        margin-bottom: 0.6rem;
    }

    .juices__sizes strong {
        min-width: 74px;
        height: 36px;

        font-size: 0.9rem;
    }

    .juices__packaging em {
        font-size: 0.8rem;
    }

    .juices__grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin-top: 3rem;
    }

    .juice-card {
        max-width: 280px;
        margin: 0 auto;
    }

    .juice-card__circle {
        width: 170px;
        height: 170px;
    }

    .juice-card__circle img {
        width: 76px;
        height: auto;
        bottom: -42px;
    }

    .juice-card h3 {
        margin-top: 60px;
        margin-bottom: 0.5rem;

        font-size: 1.6rem;
    }

    .juice-card p {
        font-size: 0.88rem;
        line-height: 1.35;
    }
}

/* Responsive - Mobile Jams */

@media (max-width: 768px) {

    .jams {
        padding: 40px 0 60px;
    }

    .jams__intro {
        max-width: 100%;
    }

    .jams__intro h2 {
        font-size: 3.3rem;
        line-height: 0.9;
        margin-bottom: 1rem;
    }

    .jams__intro p {
        max-width: 320px;
        margin: 0 auto 1.2rem;

        font-size: 0.9rem;
        line-height: 1.4;
    }

    .jams__packaging {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .jams__grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin-top: 3rem;
    }

    .jam-card {
        max-width: 280px;
        margin: 0 auto;
    }

    .jam-card__circle {
        width: 170px;
        height: 170px;
    }

    .jam-card__circle img {
        width: 120px;
        height: auto;
        bottom: -35px;
    }

    .jam-card h3 {
        margin-top: 55px;
        margin-bottom: 0.5rem;

        font-size: 1.6rem;
    }

    .jam-card p {
        font-size: 0.88rem;
        line-height: 1.35;
    }
}

/* Responsive - Mobile About */

@media (max-width: 768px) {

    .about {
        padding: 55px 0 60px;
    }

    .about__intro {
        margin-bottom: 2rem;
    }

    .about__intro h2 {
        max-width: 330px;
        margin: 0 auto 1.2rem;

        font-size: 2.7rem;
        line-height: 0.92;
    }

    .about__intro p {
        max-width: 320px;

        font-size: 0.9rem;
        line-height: 1.4;
    }

    .about__content {
        display: block;
        max-width: 320px;
    }

    .about__left p,
    .about__right li {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .about__left p {
        margin-bottom: 1.2rem;
    }

    .about__right {
        margin-top: 1.8rem;
    }

    .about__right h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .about__right ul {
        padding-left: 1.1rem;
    }

    .about__right li {
        margin-bottom: 0.45rem;
    }
}

/* Responsive - Mobile Who We Are */

@media (max-width: 768px) {

    .who-we-are {
        padding: 45px 0 65px;
    }

    .who-we-are__inner {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .who-we-are__image {
        order: 1;
    }

    .who-we-are__image img {
        max-width: 300px;
    }

    .who-we-are__content {
        order: 2;
        max-width: 320px;
        padding-top: 0;
    }

    .who-we-are__content h2 {
        font-size: 2.7rem;
        line-height: 0.92;
        margin-bottom: 1.2rem;
    }

    .who-we-are__content p {
        font-size: 0.9rem;
        line-height: 1.45;
        margin-bottom: 1rem;
    }
}

/* Responsive - Mobile Contact */

@media (max-width: 768px) {

    .contact {
        padding: 55px 0 65px;
    }

    .contact__intro {
        max-width: 320px;
        margin-bottom: 1.8rem;
    }

    .contact__intro h2 {
        white-space: normal;

        font-size: 2.7rem;
        line-height: 0.92;
        margin-bottom: 1rem;
    }

    .contact__intro p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .contact__form {
        max-width: 320px;
    }

    .contact__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact__field {
        margin-bottom: 0.85rem;
    }

    .contact__field label {
        font-size: 0.82rem;
    }

    .contact__field input {
        height: 40px;
        font-size: 0.9rem;
    }

    .contact__field textarea {
        height: 130px;
        font-size: 0.9rem;
    }

    .contact__button {
        height: 42px;
        min-width: 140px;

        font-size: 0.9rem;
    }

    .contact__privacy {
        max-width: 300px;
        font-size: 0.72rem;
        line-height: 1.45;
    }
}

/* Responsive - Mobile Locations */

@media (max-width: 768px) {

    .locations {
        padding: 55px 0 70px;
    }

    .locations__intro {
        max-width: 320px;
        margin-bottom: 2rem;
    }

    .locations__intro h2 {
        font-size: 2.9rem;
        line-height: 0.9;
        margin-bottom: 1rem;
    }

    .locations__intro p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .locations__grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 320px;
    }

    .location-card {
        min-height: auto;
        padding: 20px 20px 18px;
    }

    .location-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .location-card p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}

/* Responsive - Mobile Gallery */

@media (max-width: 768px) {

    .gallery {
        padding: 0 0 60px;
    }

    .gallery .container {
        padding: 0;
    }

    .gallery__track {
        gap: 8px;
        padding: 0 18px;
    }

    .gallery__item {
        height: 260px;
    }

    .gallery__item img {
        height: 260px;
        border-radius: 8px;
    }

    .gallery__button {
        display: none;
    }

    .gallery-modal {
        padding: 18px;
    }

    .gallery-modal__content {
        max-width: 100%;
        max-height: 82vh;
    }

    .gallery-modal__image {
        max-height: 82vh;
    }

    .gallery-modal__button {
        width: 44px;
        height: 44px;
    }

    .gallery-modal__button img {
        width: 24px;
    }

    .gallery-modal__button--prev {
        left: 8px;
    }

    .gallery-modal__button--next {
        right: 8px;
    }

    .gallery-modal__close {
        top: 18px;
        right: 18px;

        width: 42px;
        height: 42px;

        font-size: 1.7rem;
    }
}

/* Responsive - Mobile Bottom Strip */

@media (max-width: 768px) {

    .bottom-strip {
        height: 28px;
    }

    .bottom-strip__track {
        justify-content: flex-start;
        gap: 18px;
        padding: 0 12px;

        font-size: 9px;
    }
}

/* Responsive - Mobile Footer */

@media (max-width: 768px) {

    .footer {
        height: auto;
        padding: 50px 0 34px;
    }

    .footer__inner {
        height: auto;

        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__image {
        position: static;

        width: 245px;
        margin-bottom: 2rem;

        transform: none;
        order: 1;
    }

    .footer__legal {
        position: static;
        order: 2;
        margin-bottom: 1.8rem;
    }

    .footer__copyright {
        max-width: 260px;
        font-size: 0.78rem;
        line-height: 1.4;
        margin-bottom: 0.6rem;
    }

    .footer__privacy {
        font-size: 0.82rem;
    }

    .footer__social {
        position: static;
        order: 3;

        justify-content: center;
        gap: 12px;
    }

    .footer__back-to-top {
        margin-right: 18px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .footer__back-to-top::before {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .footer__social-link img {
        width: 34px;
        height: 34px;
    }
}

/* Responsive - Mobile Privacy Modal */

@media (max-width: 768px) {

    .privacy-modal {
        padding: 16px;
    }

    .privacy-modal__box {
        max-height: 90vh;
        border-radius: 18px;
    }

    .privacy-modal__header {
        padding: 22px 22px 16px;
    }

    .privacy-modal__header h2 {
        font-size: 2rem;
    }

    .privacy-modal__header p {
        font-size: 0.78rem;
    }

    .privacy-modal__content {
        padding: 20px 22px;
    }

    .privacy-modal__content h3 {
        font-size: 1.22rem;
    }

    .privacy-modal__content p,
    .privacy-modal__content li {
        font-size: 0.86rem;
        line-height: 1.45;
    }

    .privacy-modal__footer {
        padding: 16px 22px 22px;
    }

    .privacy-modal__close {
        min-width: 130px;
        height: 44px;

        font-size: 0.9rem;
    }
}

/* Responsive - Hamburger Menu */

@media (max-width: 768px) {

    .header {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .header__nav--right {
        position: absolute;
        left: 0;
        top: 128px;
        z-index: 20;

        width: 100%;
        padding: 28px 18px 32px;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;

        background-color: rgba(255, 255, 255, 0.96);
        box-shadow: 0 12px 24px rgba(6, 53, 39, 0.12);
        backdrop-filter: blur(10px);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-12px);
        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .header.is-menu-open .header__nav--right {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);
    }

    .header__nav--right a {
        font-size: 1.15rem;
    }

    .header__nav--right .language-switcher {
        margin-top: 0.4rem;
    }

    .header__menu-button span {
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .header.is-menu-open .header__menu-button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header.is-menu-open .header__menu-button span:nth-child(2) {
        opacity: 0;
    }

    .header.is-menu-open .header__menu-button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-only-link {
        display: block;
    }

    #sokovi,
    #dzemovi,
    #tko-smo-mi,
    #kontakt,
    #prodajna-mjesta {
        scroll-margin-top: 110px;
    }
}

/* Responsive - Tablet */

@media (max-width: 1024px) and (min-width: 769px) {

    .container {
        padding: 0 28px;
    }

    .header__nav {
        gap: 0.8rem;
    }
    
    .header__nav a,
    .language-switcher {
        font-size: clamp(0.78rem, 1.25vw, 0.9rem);
    }

    .header__logo {
        left: 50%;
        transform: translate(-50%, -12%);
    }

    .header__logo img {
        width: 150px;
        min-width: 0;
        max-width: none;
    }

    .hero {
        padding-top: 45px;
        padding-bottom: 70px;
    }

    .hero__inner {
        gap: 2.5rem;
    }

    .hero__content {
        width: 46%;
    }

    .hero__content h1 {
        font-size: 3.2rem;
    }

    .hero__content p {
        font-size: 1rem;
    }

    .hero__image {
        width: 54%;
    }

    .hero__image img {
        width: 95%;
        max-width: 430px;
    }

    .juices__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem 2rem;
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
    }

    .juices__grid .juice-card:nth-child(4) {
        grid-column: 1 / 2;
        transform: translateX(50%);
    }
    
    .juices__grid .juice-card:nth-child(5) {
        grid-column: 2 / 3;
        transform: translateX(50%);
    }

    .jams__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2.5rem;
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    .about {
        padding: 80px 0;
    }

    .about__content {
        gap: 42px;
    }

    .about__left p,
    .about__right li {
        font-size: 1rem;
    }

    .who-we-are {
        padding: 75px 0 90px;
    }

    .who-we-are__inner {
        gap: 45px;
    }

    .who-we-are__content {
        padding-top: 20px;
    }

    .who-we-are__content h2 {
        font-size: 4.4rem;
    }

    .who-we-are__content p {
        font-size: 1rem;
    }

    .contact__intro h2 {
        font-size: 4.4rem;
    }

    .locations__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
    }

    .gallery__item,
    .gallery__item img {
        height: 360px;
    }

    .footer__image {
        width: 320px;
    }

    .footer__legal {
        left: 50px;
    }
    
    .footer__social {
        right: 50px;
    }
    
    .footer__copyright,
    .footer__privacy,
    .footer__back-to-top {
        font-size: 0.8rem;
    }
    
    .footer__back-to-top {
        margin-right: 20px;
    }
}

/* Desktop Animations */

@media (min-width: 1025px) {

    .animations-ready .animate-on-scroll {
        opacity: 0;
        transition:
            opacity 0.75s ease,
            transform 0.75s ease;
        will-change: opacity, transform;
    }

    .animations-ready .animate-fade-up {
        transform: translateY(34px);
    }

    .animations-ready .animate-fade-left {
        transform: translateX(-38px);
    }

    .animations-ready .animate-fade-right {
        transform: translateX(38px);
    }

    .animations-ready .animate-on-scroll.is-visible {
        opacity: 1;
        transform: translate(0, 0);
    }

    .animations-ready .animate-delay-1 {
        transition-delay: 0.12s;
    }

    .animations-ready .animate-delay-2 {
        transition-delay: 0.22s;
    }

    .animations-ready .animate-delay-3 {
        transition-delay: 0.32s;
    }

    .animations-ready .animate-delay-4 {
        transition-delay: 0.42s;
    }

    .animations-ready .animate-delay-5 {
        transition-delay: 0.52s;
    }
}

@media (prefers-reduced-motion: reduce) {

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}