:root {
    --green: #76ba00;
    --green-dark: #4f8100;
    --green-soft: #edf6da;
    --coffee: #704015;
    --coffee-dark: #3d2413;
    --ink: #171717;
    --paper: #fffdf7;
    --cream: #f4efe3;
    --surface: #ffffff;
    --muted: #675e56;
    --line: rgba(61, 36, 19, 0.14);
    --shadow: 0 30px 80px rgba(61, 36, 19, 0.13);
}

* { box-sizing: border-box; }

html {
    min-width: 320px;
    scroll-behavior: smooth;
    color-scheme: light;
    background: var(--paper);
}

body {
    min-height: 100vh;
    margin: 0;
    padding-top: 82px;
    color: var(--ink);
    background:
        radial-gradient(circle at 5% 5%, rgba(118, 186, 0, 0.14), transparent 27rem),
        radial-gradient(circle at 96% 28%, rgba(112, 64, 21, 0.08), transparent 32rem),
        var(--paper);
    font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    opacity: 0.2;
    background-image: radial-gradient(rgba(61, 36, 19, 0.24) 0.6px, transparent 0.6px);
    background-size: 13px 13px;
    mask-image: linear-gradient(to bottom, black, transparent 68%);
}

img { max-width: 100%; }
a { -webkit-tap-highlight-color: transparent; }

a:focus-visible {
    outline: 3px solid rgba(118, 186, 0, 0.4);
    outline-offset: 3px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 60;
    transform: translateX(-50%);
    width: min(1240px, calc(100% - 40px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 247, 0.9);
    box-shadow: 0 9px 30px rgba(61, 36, 19, 0.045);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-header::before {
    position: absolute;
    top: 0;
    bottom: -1px;
    left: 50%;
    z-index: -1;
    width: 100vw;
    transform: translateX(-50%);
    border-bottom: 1px solid var(--line);
    content: "";
    background: inherit;
}

.mini-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

.mini-brand img {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.mini-brand span { display: grid; }
.mini-brand strong { color: var(--coffee-dark); font-size: 0.9rem; }
.mini-brand small { margin-top: 2px; color: #776c62; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }

.site-header nav {
    display: flex;
    align-items: center;
    gap: 3px;
}

.site-header nav a {
    padding: 9px 10px;
    border-radius: 999px;
    color: #544b43;
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
}

.site-header nav a:hover { color: var(--green-dark); background: rgba(118, 186, 0, 0.09); }
.site-header nav .nav-phone { margin-left: 5px; padding-inline: 17px; color: #fff; background: var(--ink); }
.site-header nav .nav-phone:hover { color: #fff; background: #333; }

main,
footer {
    width: min(1240px, calc(100% - 40px));
    margin-inline: auto;
}

section[id] { scroll-margin-top: 104px; }

.eyebrow {
    margin: 0 0 17px;
    color: var(--green-dark);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow span {
    display: inline-block;
    width: 38px;
    height: 2px;
    margin: 0 10px 4px 0;
    background: var(--green);
}

h1,
h2 {
    margin: 0;
    color: var(--coffee-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.97;
}

h1 { font-size: clamp(3.2rem, 6vw, 6.35rem); }
h2 { font-size: clamp(2.55rem, 4.6vw, 5rem); }
h3 { margin: 0; color: var(--coffee-dark); }

.hero {
    min-height: calc(100vh - 82px);
    padding: 56px 0 72px;
    display: grid;
    grid-template-columns: minmax(370px, 0.82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: clamp(34px, 5vw, 72px);
}

.hero-copy { position: relative; z-index: 2; }

.lead {
    max-width: 580px;
    margin: 28px 0 0;
    color: #4d443c;
    font-size: clamp(1.04rem, 1.55vw, 1.22rem);
    line-height: 1.72;
}

.hero-actions {
    margin-top: 31px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.button {
    min-height: 49px;
    padding: 13px 20px;
    border: 1px solid;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
}

.button-primary { color: #fff; border-color: var(--green-dark); background: var(--green-dark); }
.button-primary:hover { background: #416b00; }
.button-secondary { color: var(--coffee-dark); border-color: var(--line); background: rgba(255, 255, 255, 0.8); }
.button-secondary:hover { border-color: rgba(118, 186, 0, 0.5); }

.promise {
    margin: 22px 0 0;
    color: #756b62;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.promise span { margin-right: 7px; color: var(--green); }

.hero-visual {
    position: relative;
    min-width: 0;
    margin: 0;
}

.hero-visual::before {
    position: absolute;
    inset: -16px 18% 23% -18px;
    z-index: -1;
    border-radius: 38px;
    content: "";
    background: var(--green-soft);
    transform: rotate(-2deg);
}

.hero-visual img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.45 / 1;
    border: 1px solid rgba(61, 36, 19, 0.1);
    border-radius: 34px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.hero-visual figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    max-width: 270px;
    padding: 14px 17px;
    border-radius: 13px;
    display: grid;
    gap: 3px;
    color: #fff;
    background: rgba(23, 23, 23, 0.9);
    backdrop-filter: blur(9px);
}

.hero-visual figcaption strong { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-visual figcaption span { color: #d8d2c8; font-size: 0.7rem; }

.manifesto {
    padding: 112px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 60px minmax(320px, 0.88fr) minmax(320px, 0.72fr);
    align-items: start;
    gap: clamp(28px, 4vw, 68px);
}

.section-number {
    margin: 4px 0 0;
    color: var(--green-dark);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.manifesto-copy {
    padding-top: 28px;
    color: #514840;
    font-size: 0.98rem;
    line-height: 1.78;
}

.manifesto-copy p { margin: 0; }
.manifesto-copy p + p { margin-top: 16px; }

.story {
    padding: 112px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(380px, 0.9fr);
    align-items: center;
    gap: clamp(40px, 7vw, 94px);
}

.story-visual {
    position: relative;
    margin: 0;
}

.story-visual::after {
    position: absolute;
    right: -18px;
    bottom: -18px;
    z-index: -1;
    width: 58%;
    height: 64%;
    border-radius: 28px;
    content: "";
    background: rgba(112, 64, 21, 0.12);
}

.story-visual img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.story-copy blockquote {
    margin: 29px 0;
    padding: 0 0 0 20px;
    border-left: 3px solid var(--green);
    color: var(--coffee);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.35;
}

.story-copy > p:not(.eyebrow) {
    margin: 0;
    color: #514840;
    font-size: 0.93rem;
    line-height: 1.75;
}

.story-copy > p:not(.eyebrow) + p { margin-top: 16px; }
.story-copy .story-closing { color: var(--green-dark); font-weight: 800; }

.values {
    padding: 112px 0;
    border-top: 1px solid var(--line);
}

.section-heading {
    margin-bottom: 44px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
    align-items: end;
    gap: 40px;
}

.section-heading > p {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.6;
}

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

.value-grid article {
    min-height: 265px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(145deg, rgba(118, 186, 0, 0.1), transparent 55%),
        rgba(255, 255, 255, 0.82);
    box-shadow: 0 15px 38px rgba(61, 36, 19, 0.05);
}

.value-grid article > span { color: var(--green-dark); font-size: 0.66rem; font-weight: 900; letter-spacing: 0.12em; }
.value-grid h3 { margin-top: auto; font-family: Georgia, "Times New Roman", serif; font-size: 1.8rem; font-weight: 500; }
.value-grid p { margin: 12px 0 0; color: #62584f; font-size: 0.82rem; line-height: 1.65; }

.menu-section {
    padding: 112px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: minmax(320px, 0.68fr) minmax(520px, 1.12fr);
    align-items: start;
    gap: clamp(44px, 8vw, 110px);
}

.menu-intro {
    position: sticky;
    top: 28px;
}

.menu-intro > p:last-child {
    max-width: 450px;
    margin: 26px 0 0;
    color: var(--muted);
    line-height: 1.72;
}

.menu-list {
    border-top: 1px solid var(--line);
}

.menu-list article {
    min-height: 124px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
}

.menu-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.85rem;
    font-weight: 700;
}

.menu-list h3 { font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 500; }
.menu-list p { margin: 6px 0 0; color: #62594f; font-size: 0.82rem; line-height: 1.55; }
.menu-list small { color: var(--green-dark); font-size: 0.62rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.menu-note { grid-column: 2; margin: 16px 0 0; color: #7b7269; font-size: 0.7rem; }

.brand-promise {
    margin-bottom: 112px;
    padding: clamp(34px, 6vw, 78px);
    border-radius: 32px;
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(280px, 0.55fr);
    align-items: center;
    gap: clamp(35px, 7vw, 90px);
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgba(118, 186, 0, 0.28), transparent 22rem),
        var(--ink);
    box-shadow: 0 26px 70px rgba(23, 23, 23, 0.18);
}

.brand-promise .eyebrow { color: #a9de4e; }
.brand-promise h2 { color: #fff; }
.brand-promise > div:last-child p { margin: 0; color: #d7d1c8; line-height: 1.72; }
.brand-promise > div:last-child p + p { margin-top: 16px; }

.location {
    padding: 112px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: minmax(300px, 0.76fr) minmax(470px, 1.24fr);
    align-items: center;
    gap: clamp(35px, 7vw, 88px);
}

.location address {
    margin-top: 27px;
    color: #4d443c;
    font-size: 1.02rem;
    font-style: normal;
    line-height: 1.7;
}

.location-note { margin: 9px 0 0; color: #766c63; font-size: 0.76rem; }

.contact-list {
    margin-top: 30px;
    display: grid;
    gap: 8px;
}

.contact-list a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 4px;
    color: inherit;
    text-decoration: none;
}

.contact-list span { color: #776d63; font-size: 0.66rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-list strong { color: var(--coffee-dark); font-size: 0.94rem; }
.contact-list a:hover strong { color: var(--green-dark); }

.map-card {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border: 1px solid var(--line);
    border-radius: 29px;
    background: var(--cream);
    box-shadow: var(--shadow);
}

.map-card iframe { display: block; width: 100%; height: 500px; border: 0; filter: saturate(0.78) contrast(1.03); }

.map-card > a {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
    border-radius: 11px;
    color: #fff;
    background: var(--ink);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
    font-size: 0.76rem;
    font-weight: 900;
    text-decoration: none;
}

.whatsapp-float {
    position: fixed;
    right: max(18px, calc((100vw - 1380px) / 2));
    bottom: 18px;
    z-index: 40;
    min-height: 52px;
    padding: 9px 17px 9px 9px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: #187c3d;
    box-shadow: 0 16px 36px rgba(20, 92, 48, 0.28);
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    background: #126a32;
}

.whatsapp-mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #187c3d;
    background: #fff;
    font-size: 0.66rem;
    letter-spacing: -0.02em;
}

footer {
    min-height: 112px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #665b52;
    font-size: 0.76rem;
}

footer div { display: grid; gap: 3px; }
footer strong { color: var(--coffee-dark); }
footer p { margin: 0; }

@media (max-width: 980px) {
    .site-header nav a:not(.nav-phone) { display: none; }
    .hero { min-height: auto; grid-template-columns: 1fr; }
    .hero-copy { max-width: 760px; padding-top: 20px; }
    .hero-visual { width: 100%; }
    .manifesto { grid-template-columns: 42px 1fr; }
    .manifesto-copy { grid-column: 2; padding-top: 0; }
    .story { grid-template-columns: 1fr; }
    .story-visual { width: min(760px, calc(100% - 18px)); }
    .value-grid { grid-template-columns: 1fr 1fr; }
    .menu-section { grid-template-columns: 1fr; }
    .menu-intro { position: static; }
    .menu-note { grid-column: 1; }
    .brand-promise { grid-template-columns: 1fr; }
    .location { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .site-header,
    main,
    footer { width: min(100% - 28px, 1240px); }
    .site-header { min-height: 72px; }
    body { padding-top: 72px; }
    .mini-brand img { width: 42px; height: 42px; }
    .hero { padding: 42px 0 70px; gap: 36px; }
    h1 { font-size: clamp(3rem, 15.5vw, 4.4rem); }
    h2 { font-size: clamp(2.5rem, 12vw, 3.8rem); }
    .eyebrow span { display: none; }
    .lead { font-size: 1rem; line-height: 1.62; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-visual img { min-height: 365px; aspect-ratio: 0.92 / 1; object-position: 60% center; border-radius: 24px; }
    .hero-visual figcaption { right: 12px; bottom: 12px; left: 12px; max-width: none; }
    .manifesto,
    .story,
    .values,
    .menu-section,
    .location { padding: 76px 0; }
    .manifesto { grid-template-columns: 1fr; gap: 23px; }
    .section-number { display: none; }
    .manifesto-copy { grid-column: 1; }
    .story-visual { width: calc(100% - 12px); }
    .story-visual img { min-height: 390px; object-position: 45% center; }
    .section-heading { grid-template-columns: 1fr; gap: 22px; }
    .value-grid { grid-template-columns: 1fr; }
    .value-grid article { min-height: 210px; }
    .menu-list article { grid-template-columns: 44px 1fr; }
    .menu-list small { grid-column: 2; }
    .brand-promise { margin-bottom: 76px; padding: 32px 24px; border-radius: 24px; }
    .map-card,
    .map-card iframe { min-height: 400px; height: 400px; }
    .whatsapp-float { right: 14px; bottom: 14px; }
    footer { padding: 30px 0; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
}

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