:root {
    --forest: #1B4332;
    --earth: #6F4E37;
    --gold: #D4A373;
    --cream: #FAF7F2;
    --beige: #F5EFE6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

/* Local fallback for the Tailwind CDN utilities used by this static page. */
[class~="fixed"] { position: fixed; }
[class~="absolute"] { position: absolute; }
[class~="relative"] { position: relative; }
[class~="inset-0"] { inset: 0; }
[class~="inset-x-0"] { left: 0; right: 0; }
[class~="top-0"] { top: 0; }
[class~="top-4"] { top: 1rem; }
[class~="right-4"] { right: 1rem; }
[class~="-bottom-6"] { bottom: -1.5rem; }
[class~="-right-3"] { right: -0.75rem; }
[class~="left-[7%]"] { left: 7%; }
[class~="right-[14%]"] { right: 14%; }
[class~="right-[34%]"] { right: 34%; }
[class~="top-[18%]"] { top: 18%; }
[class~="top-[22%]"] { top: 22%; }
[class~="bottom-[18%]"] { bottom: 18%; }
[class~="z-10"] { z-index: 10; }
[class~="z-50"] { z-index: 50; }
[class~="z-[80]"] { z-index: 80; }

[class~="block"] { display: block; }
[class~="flex"] { display: flex; }
[class~="inline-flex"] { display: inline-flex; }
[class~="grid"] { display: grid; }
[class~="hidden"] { display: none !important; }
[class~="flex-col"] { flex-direction: column; }
[class~="items-center"] { align-items: center; }
[class~="items-end"] { align-items: flex-end; }
[class~="justify-between"] { justify-content: space-between; }
[class~="justify-center"] { justify-content: center; }
[class~="place-items-center"] { place-items: center; }
[class~="grid-cols-3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }

[class~="gap-2"] { gap: 0.5rem; }
[class~="gap-3"] { gap: 0.75rem; }
[class~="gap-4"] { gap: 1rem; }
[class~="gap-5"] { gap: 1.25rem; }
[class~="gap-6"] { gap: 1.5rem; }
[class~="gap-8"] { gap: 2rem; }
[class~="gap-10"] { gap: 2.5rem; }
[class~="gap-12"] { gap: 3rem; }
[class~="space-y-3"] > * + * { margin-top: 0.75rem; }
[class~="space-y-4"] > * + * { margin-top: 1rem; }

[class~="mx-auto"] { margin-left: auto; margin-right: auto; }
[class~="mt-2"] { margin-top: 0.5rem; }
[class~="mt-3"] { margin-top: 0.75rem; }
[class~="mt-4"] { margin-top: 1rem; }
[class~="mt-5"] { margin-top: 1.25rem; }
[class~="mt-7"] { margin-top: 1.75rem; }
[class~="mt-8"] { margin-top: 2rem; }
[class~="mt-9"] { margin-top: 2.25rem; }
[class~="mt-10"] { margin-top: 2.5rem; }
[class~="mt-12"] { margin-top: 3rem; }
[class~="mb-14"] { margin-bottom: 3.5rem; }
[class~="p-3"] { padding: 0.75rem; }
[class~="p-4"] { padding: 1rem; }
[class~="p-5"] { padding: 1.25rem; }
[class~="px-4"] { padding-left: 1rem; padding-right: 1rem; }
[class~="px-5"] { padding-left: 1.25rem; padding-right: 1.25rem; }
[class~="px-6"] { padding-left: 1.5rem; padding-right: 1.5rem; }
[class~="py-2"] { padding-top: 0.5rem; padding-bottom: 0.5rem; }
[class~="py-3"] { padding-top: 0.75rem; padding-bottom: 0.75rem; }
[class~="py-4"] { padding-top: 1rem; padding-bottom: 1rem; }
[class~="py-10"] { padding-top: 2.5rem; padding-bottom: 2.5rem; }
[class~="pt-4"] { padding-top: 1rem; }
[class~="pt-6"] { padding-top: 1.5rem; }
[class~="pt-32"] { padding-top: 8rem; }
[class~="pb-8"] { padding-bottom: 2rem; }
[class~="pb-10"] { padding-bottom: 2.5rem; }

[class~="h-11"] { height: 2.75rem; }
[class~="w-11"] { width: 2.75rem; }
[class~="h-full"] { height: 100%; }
[class~="w-full"] { width: 100%; }
[class~="w-max"] { width: max-content; }
[class~="min-h-screen"] { min-height: 100vh; }
[class~="min-h-[360px]"] { min-height: 360px; }
[class~="min-h-[calc(100vh-8rem)]"] { min-height: calc(100vh - 8rem); }
[class~="max-h-[86vh]"] { max-height: 86vh; }
[class~="max-w-xs"] { max-width: 20rem; }
[class~="max-w-sm"] { max-width: 24rem; }
[class~="max-w-md"] { max-width: 28rem; }
[class~="max-w-2xl"] { max-width: 42rem; }
[class~="max-w-3xl"] { max-width: 48rem; }
[class~="max-w-5xl"] { max-width: 64rem; }
[class~="max-w-7xl"] { max-width: 80rem; }
[class~="aspect-square"] { aspect-ratio: 1 / 1; }
[class~="aspect-[4/5]"] { aspect-ratio: 4 / 5; }
[class~="aspect-[5/4]"] { aspect-ratio: 5 / 4; }

[class~="overflow-hidden"] { overflow: hidden; }
[class~="object-cover"] { object-fit: cover; }
[class~="object-contain"] { object-fit: contain; }
[class~="object-[62%_center]"] { object-position: 62% center; }
[class~="rounded-2xl"] { border-radius: 1rem; }
[class~="rounded-[24px]"] { border-radius: 24px; }
[class~="rounded-[28px]"] { border-radius: 28px; }
[class~="rounded-[32px]"] { border-radius: 32px; }
[class~="rounded-[34px]"] { border-radius: 34px; }
[class~="rounded-[36px]"] { border-radius: 36px; }
[class~="rounded-full"] { border-radius: 9999px; }

[class~="border"] { border: 1px solid rgba(27, 67, 50, 0.12); }
[class~="border-t"] { border-top: 1px solid rgba(255, 255, 255, 0.1); }
[class~="border-forest/10"] { border-color: rgba(27, 67, 50, 0.1); }
[class~="border-white/10"] { border-color: rgba(255, 255, 255, 0.1); }
[class~="border-white/15"] { border-color: rgba(255, 255, 255, 0.15); }
[class~="border-white/20"] { border-color: rgba(255, 255, 255, 0.2); }
[class~="border-white/60"] { border-color: rgba(255, 255, 255, 0.6); }
[class~="border-white/70"] { border-color: rgba(255, 255, 255, 0.7); }

[class~="bg-[#10271d]"] { background-color: #10271d; }
[class~="bg-forest"] { background-color: var(--forest); }
[class~="bg-cream"] { background-color: var(--cream); }
[class~="bg-beige"] { background-color: var(--beige); }
[class~="bg-gold"] { background-color: var(--gold); }
[class~="bg-white"] { background-color: white; }
[class~="bg-cream/82"] { background-color: rgba(250, 247, 242, 0.82); }
[class~="bg-cream/95"] { background-color: rgba(250, 247, 242, 0.95); }
[class~="bg-forest/90"] { background-color: rgba(27, 67, 50, 0.9); }
[class~="bg-white/10"] { background-color: rgba(255, 255, 255, 0.1); }
[class~="bg-white/12"] { background-color: rgba(255, 255, 255, 0.12); }
[class~="bg-white/80"] { background-color: rgba(255, 255, 255, 0.8); }
[class~="bg-[linear-gradient(90deg,rgba(12,34,24,.92),rgba(27,67,50,.66)_43%,rgba(27,67,50,.08)),linear-gradient(0deg,rgba(12,34,24,.82),rgba(12,34,24,.04)_60%)]"] {
    background-image: linear-gradient(90deg, rgba(12,34,24,.92), rgba(27,67,50,.66) 43%, rgba(27,67,50,.08)), linear-gradient(0deg, rgba(12,34,24,.82), rgba(12,34,24,.04) 60%);
}

[class~="shadow-premium"] { box-shadow: 0 28px 90px rgba(27, 67, 50, 0.16); }
[class~="backdrop-blur-md"] { backdrop-filter: blur(12px); }
[class~="backdrop-blur-xl"] { backdrop-filter: blur(24px); }

[class~="font-sans"] { font-family: Inter, system-ui, sans-serif; }
[class~="font-display"] { font-family: "Playfair Display", Georgia, serif; }
[class~="font-bold"] { font-weight: 700; }
[class~="font-extrabold"] { font-weight: 800; }
[class~="font-black"] { font-weight: 900; }
[class~="uppercase"] { text-transform: uppercase; }
[class~="antialiased"] { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
[class~="text-center"] { text-align: center; }
[class~="text-xs"] { font-size: 0.75rem; line-height: 1rem; }
[class~="text-sm"] { font-size: 0.875rem; line-height: 1.25rem; }
[class~="text-base"] { font-size: 1rem; line-height: 1.5rem; }
[class~="text-xl"] { font-size: 1.25rem; line-height: 1.75rem; }
[class~="text-5xl"] { font-size: 3rem; }
[class~="text-[0.66rem]"] { font-size: 0.66rem; }
[class~="leading-7"] { line-height: 1.75rem; }
[class~="leading-8"] { line-height: 2rem; }
[class~="leading-tight"] { line-height: 1.25; }
[class~="leading-[0.94]"] { line-height: 0.94; }
[class~="tracking-tight"] { letter-spacing: 0; }
[class~="tracking-[0.22em]"] { letter-spacing: 0.22em; }
[class~="text-forest"] { color: var(--forest); }
[class~="text-earth"] { color: var(--earth); }
[class~="text-gold"] { color: var(--gold); }
[class~="text-white"] { color: white; }
[class~="text-earth/70"] { color: rgba(111, 78, 55, 0.7); }
[class~="text-forest/68"] { color: rgba(27, 67, 50, 0.68); }
[class~="text-forest/75"] { color: rgba(27, 67, 50, 0.75); }
[class~="text-white/50"] { color: rgba(255, 255, 255, 0.5); }
[class~="text-white/60"] { color: rgba(255, 255, 255, 0.6); }
[class~="text-white/70"] { color: rgba(255, 255, 255, 0.7); }
[class~="text-white/72"] { color: rgba(255, 255, 255, 0.72); }
[class~="text-white/78"] { color: rgba(255, 255, 255, 0.78); }
[class~="text-white/80"] { color: rgba(255, 255, 255, 0.8); }
[class~="text-white/82"] { color: rgba(255, 255, 255, 0.82); }
[class~="transition"] { transition: all 180ms ease; }

[class~="hover:bg-earth"]:hover { background-color: var(--earth); }
[class~="hover:bg-white"]:hover { background-color: white; }

.brand-mark {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border: 1px solid rgba(27, 67, 50, 0.12);
    border-radius: 1rem;
    background: linear-gradient(135deg, #1B4332, #2D6A4F);
    color: #FAF7F2;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.05rem;
    font-weight: 800;
}

.brand-mark-footer {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
}

::selection {
    background: var(--gold);
    color: var(--forest);
}

.section-padding {
    padding-block: clamp(5rem, 9vw, 8.5rem);
}

.eyebrow {
    display: block;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.section-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.35rem, 5vw, 5.2rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 0.98;
}

.section-copy {
    color: rgba(27, 67, 50, 0.68);
    font-size: 1.05rem;
    line-height: 1.9;
}

.nav-link {
    position: relative;
    transition: color 180ms ease;
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: -0.45rem;
    left: 0;
    height: 2px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

#mobile-menu a {
    display: block;
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    color: rgba(27, 67, 50, 0.78);
    font-size: 0.95rem;
    font-weight: 800;
}

#mobile-menu a:hover {
    background: white;
    color: var(--forest);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
    display: block;
    width: 1.15rem;
    height: 2px;
    border-radius: 999px;
    background: var(--forest);
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines {
    position: relative;
}

.menu-lines::before,
.menu-lines::after {
    position: absolute;
    left: 0;
    content: "";
}

.menu-lines::before {
    top: -6px;
}

.menu-lines::after {
    top: 6px;
}

.menu-open .menu-lines {
    background: transparent;
}

.menu-open .menu-lines::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-open .menu-lines::after {
    top: 0;
    transform: rotate(-45deg);
}

.btn-primary,
.btn-glass {
    display: inline-flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 1.25rem;
    padding-inline: 1.45rem;
    font-weight: 900;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--forest);
}

.btn-glass {
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    backdrop-filter: blur(14px);
}

.btn-primary:hover,
.btn-glass:hover {
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    z-index: 12;
    display: grid;
    width: 1.85rem;
    height: 3rem;
    place-items: start center;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 999px;
    transform: translateX(-50%);
}

.scroll-indicator span {
    width: 0.35rem;
    height: 0.35rem;
    margin-top: 0.55rem;
    border-radius: 999px;
    background: white;
    animation: scrollDot 1.7s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { opacity: 0.4; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(1rem); }
}

.organic-float {
    position: absolute;
    z-index: 5;
    width: 7rem;
    height: 7rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 64% 36% 62% 38% / 42% 55% 45% 58%;
    background: rgba(212, 163, 115, 0.12);
    backdrop-filter: blur(10px);
    animation: floatShape 7s ease-in-out infinite;
}

.delay-200 {
    animation-delay: 1.2s;
}

.delay-500 {
    animation-delay: 2.4s;
}

@keyframes floatShape {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(0.6rem, -1rem, 0) rotate(12deg); }
}

.ticker-track {
    animation: tickerMove 26s linear infinite;
}

.ticker-track span::before {
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin-inline: 2rem;
    border-radius: 999px;
    background: var(--gold);
    content: "";
    vertical-align: 0.08rem;
}

@keyframes tickerMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.highlight-card,
.sustain-row {
    border: 1px solid rgba(27, 67, 50, 0.1);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 48px rgba(27, 67, 50, 0.08);
    color: var(--forest);
    font-weight: 900;
}

.highlight-card {
    padding: 1.15rem;
}

.sustain-row {
    padding: 1rem 1.15rem;
}

.product-card {
    overflow: hidden;
    border: 1px solid rgba(27, 67, 50, 0.1);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 20px 62px rgba(27, 67, 50, 0.11);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
    box-shadow: 0 30px 90px rgba(27, 67, 50, 0.18);
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: white;
    transition: transform 600ms ease;
}

.product-card:hover img {
    transform: scale(1.045);
}

.product-card div {
    padding: 1.25rem;
}

.product-card span {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-card h3 {
    margin-top: 0.55rem;
    color: var(--forest);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.12;
}

.product-card p {
    margin-top: 0.75rem;
    color: rgba(27, 67, 50, 0.66);
    line-height: 1.7;
}

.product-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: var(--forest);
    font-weight: 900;
}

.product-card a::after {
    content: "->";
    transition: transform 180ms ease;
}

.product-card a:hover::after {
    transform: translateX(0.18rem);
}

.feature-card,
.testimonial-card {
    border: 1px solid rgba(27, 67, 50, 0.1);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 54px rgba(27, 67, 50, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card {
    padding: 1.5rem;
}

.feature-card:hover,
.testimonial-card:hover {
    box-shadow: 0 28px 78px rgba(27, 67, 50, 0.14);
    transform: translateY(-6px);
}

.feature-card span {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border-radius: 1rem;
    background: var(--beige);
    color: var(--gold);
    font-weight: 900;
}

.feature-card h3 {
    margin-top: 1.4rem;
    color: var(--forest);
    font-size: 1.25rem;
    font-weight: 900;
}

.feature-card p,
.testimonial-card p {
    margin-top: 0.7rem;
    color: rgba(27, 67, 50, 0.64);
    line-height: 1.75;
}

.glass-stat {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    backdrop-filter: blur(14px);
}

.glass-stat strong,
.glass-stat span {
    display: block;
}

.glass-stat strong {
    color: white;
    font-size: 1.35rem;
    font-weight: 900;
}

.glass-stat span {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
}

.gallery-grid {
    display: grid;
    grid-auto-rows: 220px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1.8rem;
    background: white;
    box-shadow: 0 18px 54px rgba(27, 67, 50, 0.1);
}

.gallery-item::after {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(27, 67, 50, 0.44);
    color: white;
    content: "Preview";
    font-weight: 900;
    opacity: 0;
    transition: opacity 180ms ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

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

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

.gallery-item.tall {
    grid-row: span 2;
}

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

.testimonial-card {
    padding: 1.6rem;
}

.testimonial-card p {
    color: rgba(27, 67, 50, 0.72);
    font-size: 1.02rem;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    margin-top: 1.35rem;
    color: var(--forest);
    font-weight: 900;
}

.testimonial-card span {
    color: rgba(27, 67, 50, 0.52);
    font-size: 0.9rem;
}

.contact-form-panel {
    padding: clamp(1.5rem, 4vw, 2.75rem);
}

.contact-form-panel .grid {
    align-items: start;
}

#contact-form label {
    display: block;
    min-width: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.85rem;
    font-weight: 900;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
    margin-top: 0.5rem;
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.05rem 1.1rem;
    color: white;
    outline: none;
    transition: border-color 180ms ease, background 180ms ease;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.14);
}

#contact-form select {
    min-height: 3.35rem;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.62) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.62) 50%, transparent 50%);
    background-position: calc(100% - 1.1rem) 50%, calc(100% - 0.78rem) 50%;
    background-repeat: no-repeat;
    background-size: 0.36rem 0.36rem, 0.36rem 0.36rem;
}

#contact-form option {
    color: var(--forest);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.social-link {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 0.75rem;
    font-weight: 900;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-link:hover {
    background: white;
    color: var(--forest);
    transform: translateY(-2px);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.whatsapp-chat {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 70;
    display: grid;
    width: 4rem;
    height: 4rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 999px;
    background: #25D366;
    box-shadow: 0 18px 48px rgba(27, 67, 50, 0.28);
    color: white;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-chat:hover {
    box-shadow: 0 24px 64px rgba(27, 67, 50, 0.34);
    transform: translateY(-4px);
}

.whatsapp-chat svg {
    width: 2rem;
    height: 2rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.55;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1023px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 640px) {
    [class~="sm:inline-flex"] { display: inline-flex !important; }
    [class~="sm:flex-row"] { flex-direction: row; }
    [class~="sm:grid-cols-2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    [class~="sm:col-span-2"] { grid-column: span 2 / span 2; }
    [class~="sm:text-lg"] { font-size: 1.125rem; line-height: 1.75rem; }
    [class~="sm:text-7xl"] { font-size: 4.5rem; line-height: 1; }
    [class~="sm:mt-16"] { margin-top: 4rem; }
    [class~="sm:p-8"] { padding: 2rem; }
    [class~="sm:-right-8"] { right: -2rem; }
}

@media (min-width: 768px) {
    [class~="md:flex-row"] { flex-direction: row; }
    [class~="md:items-end"] { align-items: flex-end; }
    [class~="md:grid-cols-2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    [class~="md:grid-cols-3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    [class~="md:grid-cols-[1.4fr_.8fr_.8fr_1fr]"] { grid-template-columns: 1.4fr .8fr .8fr 1fr; }
}

@media (min-width: 1024px) {
    [class~="lg:flex"] { display: flex !important; }
    [class~="lg:hidden"] { display: none !important; }
    [class~="lg:px-6"] { padding-left: 1.5rem; padding-right: 1.5rem; }
    [class~="lg:grid-cols-3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    [class~="lg:grid-cols-[.75fr_1fr]"] { grid-template-columns: .75fr 1fr; }
    [class~="lg:grid-cols-[.85fr_1fr]"] { grid-template-columns: .85fr 1fr; }
    [class~="lg:grid-cols-[.9fr_1fr]"] { grid-template-columns: .9fr 1fr; }
    [class~="lg:grid-cols-[1.05fr_.58fr]"] { grid-template-columns: 1.05fr .58fr; }
    [class~="lg:grid-cols-[1fr_.9fr]"] { grid-template-columns: 1fr .9fr; }
    [class~="lg:order-1"] { order: 1; }
    [class~="lg:order-2"] { order: 2; }
    [class~="lg:text-8xl"] { font-size: 6rem; line-height: 1; }
}

@media (min-width: 1280px) {
    [class~="xl:grid-cols-3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .section-padding {
        padding-block: 4.5rem;
    }

    .hero-shell {
        min-height: 94vh;
        padding-top: 7.5rem;
    }

    .hero-shell > img {
        object-position: 72% center;
    }

    .hero-shell .organic-float,
    .scroll-indicator {
        display: none;
    }

    .hero-shell .reveal.max-w-3xl {
        max-width: none;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 1.5rem;
        background: rgba(12, 34, 24, 0.72);
        padding: 1.25rem;
        backdrop-filter: blur(14px);
    }

    .hero-shell h1 {
        font-size: clamp(2.55rem, 14vw, 4.2rem);
        line-height: 0.98;
    }

    .hero-shell aside {
        display: none;
    }

    [class~="min-h-[calc(100vh-8rem)]"] {
        min-height: calc(94vh - 7.5rem);
    }

    [class~="absolute"][class~="-bottom-6"] {
        position: static;
        margin-top: 1rem;
        max-width: none;
    }

    [class~="aspect-[4/5]"],
    [class~="aspect-[5/4]"] {
        width: 100%;
        height: auto;
    }

    [class~="min-h-[360px]"] {
        min-height: 0;
    }

    #farmers img {
        height: 280px;
    }

    .gallery-grid {
        display: block;
    }

    .gallery-item {
        display: block;
        height: 260px;
        margin-bottom: 1rem;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
