:root {
    --green: #173f35;
    --green-2: #245447;
    --ink: #1c211f;
    --muted: #68716c;
    --cream: #f4f0e7;
    --cream-2: #faf8f3;
    --white: #ffffff;
    --line: rgba(23, 63, 53, 0.15);
    --accent: #c96c45;
    --radius: 24px;
    --shadow: 0 24px 60px rgba(20, 43, 35, 0.12);
    --shell: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream-2);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

h1 {
    margin-bottom: 28px;
    font-size: clamp(3.4rem, 7vw, 7.2rem);
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2.7rem, 5vw, 5rem);
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(1.55rem, 2.1vw, 2.2rem);
}

.shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.section-shell {
    padding-block: clamp(76px, 9vw, 140px);
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--green-2);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #cfe3d9;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    transform: translateY(-150%);
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--white);
    background: var(--green);
}

.skip-link:focus {
    transform: none;
}

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

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid transparent;
    background: rgba(250, 248, 243, 0.86);
    backdrop-filter: blur(18px);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 10px 30px rgba(23, 63, 53, 0.05);
}

.header-inner {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand img {
    width: auto;
    height: 58px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
    font-size: 0.92rem;
    font-weight: 650;
}

.site-nav a {
    position: relative;
}

.site-nav a:not(.language-switch)::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    background: var(--green);
    transition: transform 180ms ease;
}

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

.language-switch {
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: var(--green);
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: clamp(54px, 7vw, 100px);
    background:
        radial-gradient(circle at 5% 10%, rgba(201, 108, 69, 0.09), transparent 27%),
        var(--cream-2);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
    align-items: center;
    gap: clamp(46px, 7vw, 100px);
}

.hero-copy {
    max-width: 760px;
}

.hero-text {
    max-width: 670px;
    margin-bottom: 34px;
    color: #4f5a55;
    font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.hero-actions,
.visit-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid var(--green);
    border-radius: 999px;
    font-weight: 750;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--green);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--green-2);
}

.button-ghost {
    color: var(--green);
    background: transparent;
}

.hero-media {
    position: relative;
    width: min(100%, 520px);
    justify-self: end;
}

.hero-media::before {
    position: absolute;
    z-index: -1;
    top: -22px;
    right: -22px;
    width: 68%;
    height: 68%;
    border-radius: 50%;
    content: "";
    background: #dce9df;
}

.hero-media img {
    width: 100%;
    height: clamp(560px, 64vw, 730px);
    border-radius: 180px 180px 24px 24px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.hero-badge {
    position: absolute;
    right: -18px;
    bottom: 28px;
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 16px;
    color: var(--white);
    background: rgba(23, 63, 53, 0.9);
    box-shadow: 0 16px 35px rgba(20, 43, 35, 0.22);
    font-size: 0.9rem;
    font-weight: 750;
    backdrop-filter: blur(10px);
}

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: clamp(52px, 8vw, 110px);
}

.about-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    object-fit: cover;
}

.about-copy p:not(.eyebrow) {
    color: #54615b;
}

.section-heading {
    max-width: 820px;
    margin-bottom: clamp(38px, 5vw, 64px);
}

.section-heading > p:last-child {
    max-width: 690px;
    color: var(--muted);
}

.produce {
    background: var(--cream);
}

.produce-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.produce-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 35px rgba(20, 43, 35, 0.06);
}

.card-image-wrap {
    overflow: hidden;
}

.produce-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.produce-card:hover img {
    transform: scale(1.035);
}

.card-copy {
    padding: 26px 26px 30px;
}

.card-copy p {
    margin-bottom: 0;
    color: var(--muted);
}

.deli {
    background: var(--white);
}

.deli-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(46px, 7vw, 100px);
}

.deli-copy {
    position: sticky;
    top: 130px;
}

.deli-copy p:last-child {
    color: var(--muted);
}

.deli-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.deli-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 22px;
    background: var(--green);
}

.deli-card:nth-child(2),
.deli-card:nth-child(3) {
    transform: translateY(42px);
}

.deli-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 500ms ease, opacity 300ms ease;
}

.deli-card:hover img {
    transform: scale(1.04);
    opacity: 0.78;
}

.deli-card figcaption {
    position: absolute;
    right: 18px;
    bottom: 16px;
    left: 18px;
    padding: 12px 15px;
    border-radius: 13px;
    color: var(--white);
    background: rgba(23, 63, 53, 0.88);
    font-weight: 750;
    backdrop-filter: blur(8px);
}

.juices {
    color: var(--white);
    background: var(--green);
}

.juices-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: clamp(44px, 7vw, 94px);
}

.juice-media {
    position: sticky;
    top: 118px;
}

.juice-media img {
    width: 100%;
    max-height: 740px;
    border-radius: 26px;
    object-fit: cover;
}

.juice-content h2 {
    max-width: 720px;
}

.juice-intro {
    max-width: 700px;
    color: #d5e0dc;
}

.juice-list {
    margin-top: 38px;
    border-top: 1px solid rgba(255,255,255,.18);
}

.juice-item {
    display: grid;
    grid-template-columns: minmax(150px, 0.6fr) minmax(0, 1.4fr);
    gap: 24px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.juice-item strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.14rem;
    font-weight: 500;
}

.juice-item span {
    color: #d5e0dc;
    font-size: 0.94rem;
}

.gallery {
    background: var(--cream-2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
    margin: 0;
    border-radius: 20px;
}

.gallery-item-1 {
    grid-column: span 5;
}

.gallery-item-2 {
    grid-column: span 3;
}

.gallery-item-3 {
    grid-column: span 4;
}

.gallery-item img {
    width: 100%;
    height: clamp(260px, 31vw, 430px);
    object-fit: cover;
    transition: transform 500ms ease;
}

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

.visit {
    background: var(--white);
}

.visit-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    align-items: stretch;
    gap: clamp(44px, 7vw, 90px);
}

.visit-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.contact-list {
    margin: 34px 0;
    border-top: 1px solid var(--line);
}

.contact-list > div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 22px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.contact-list dt {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 750;
    text-transform: uppercase;
}

.contact-list dd {
    margin-bottom: 0;
    font-weight: 650;
}

.text-link {
    padding: 10px 4px;
    border-bottom: 1px solid var(--green);
    color: var(--green);
    font-weight: 750;
}

.map-wrap {
    min-height: 510px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 510px;
    border: 0;
}

.site-footer {
    padding: 64px 0 24px;
    color: #eaf2ee;
    background: #102d26;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: end;
    padding-bottom: 38px;
}

.footer-brand img {
    width: auto;
    height: 64px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 560px;
    margin-bottom: 0;
    color: #bcd0c8;
}

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

.footer-meta p {
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    margin-top: 16px;
}

.social-links a,
.footer-bottom a {
    color: #dbe9e3;
    border-bottom: 1px solid rgba(219,233,227,.45);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.13);
    color: #9eb6ac;
    font-size: 0.84rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 86px;
        right: 0;
        left: 0;
        display: grid;
        max-height: 0;
        overflow: hidden;
        gap: 0;
        padding: 0 24px;
        border-bottom: 1px solid transparent;
        background: rgba(250, 248, 243, 0.98);
        opacity: 0;
        pointer-events: none;
        transition: max-height 250ms ease, opacity 180ms ease, padding 250ms ease;
    }

    .site-nav.is-open {
        max-height: calc(100vh - 86px);
        padding-top: 14px;
        padding-bottom: 24px;
        border-color: var(--line);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .site-nav .language-switch {
        width: fit-content;
        margin-top: 14px;
        padding: 9px 13px;
        border: 1px solid var(--line);
    }

    .site-nav a::after {
        display: none;
    }

    .hero-grid,
    .about-grid,
    .deli-layout,
    .juices-grid,
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .hero-media {
        width: min(88%, 620px);
        justify-self: center;
    }

    .hero-media img {
        height: min(720px, 108vw);
    }

    .about-media {
        order: 2;
    }

    .deli-copy,
    .juice-media {
        position: static;
    }

    .juice-media {
        max-width: 650px;
    }

    .visit-copy {
        max-width: 720px;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(calc(100% - 32px), var(--shell));
    }

    .section-shell {
        padding-block: 72px;
    }

    .header-inner {
        min-height: 76px;
    }

    .brand img {
        height: 50px;
    }

    .site-nav {
        top: 76px;
    }

    h1 {
        font-size: clamp(3.1rem, 15vw, 5.4rem);
    }

    h2 {
        font-size: clamp(2.6rem, 12vw, 4.1rem);
    }

    .hero {
        padding-top: 42px;
    }

    .hero-media {
        width: 100%;
    }

    .hero-media img {
        height: 128vw;
        max-height: 650px;
        border-radius: 100px 100px 20px 20px;
    }

    .hero-badge {
        right: 12px;
        bottom: 18px;
    }

    .produce-grid,
    .deli-grid {
        grid-template-columns: 1fr;
    }

    .deli-card:nth-child(2),
    .deli-card:nth-child(3) {
        transform: none;
    }

    .juice-item {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3 {
        grid-column: span 1;
    }

    .gallery-item:nth-child(3n+1) {
        grid-column: span 2;
    }

    .gallery-item img {
        height: 56vw;
        min-height: 220px;
    }

    .map-wrap,
    .map-wrap iframe {
        min-height: 420px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero-actions,
    .visit-actions {
        align-items: stretch;
    }

    .hero-actions .button,
    .visit-actions .button {
        width: 100%;
    }

    .contact-list > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3,
    .gallery-item:nth-child(3n+1) {
        grid-column: span 1;
    }

    .gallery-item img {
        height: 92vw;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
