:root {
    --paper: #FAFAF8;
    --linen: #F1EFE8;
    --ink: #1A1714;
    --ink-soft: #5C564E;
    --basil: #2E6B4D;
    --basil-dark: #1F4D37;
    --basil-tint: #E8F0EB;
    --tomato: #BE3A2E;
    --tomato-dark: #8E2820;
    --espresso: #1B1916;
    --line: #E3DFD6;
    --maxw: 1120px;
    --r: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

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

body {
    font-family: 'Poppins', system-ui, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased
}

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

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

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px
}

.tricolore {
    display: inline-flex;
    height: 4px;
    width: 46px;
    border-radius: 99px;
    overflow: hidden;
    vertical-align: middle;
    flex: none
}

.tricolore i {
    flex: 1;
    display: block
}

.tricolore i:nth-child(1) {
    background: var(--basil)
}

.tricolore i:nth-child(2) {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.tricolore i:nth-child(3) {
    background: var(--tomato)
}

.topband {
    display: flex;
    height: 4px;
    width: 100%
}

.topband span {
    flex: 1
}

.topband span:nth-child(1) {
    background: var(--basil)
}

.topband span:nth-child(2) {
    background: #fff
}

.topband span:nth-child(3) {
    background: var(--tomato)
}

.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--basil-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px
}

.demand {
    background: var(--espresso);
    color: #EDE9E0;
    font-size: 13px;
    text-align: center;
    padding: 9px 16px
}

.demand b {
    color: #fff;
    font-weight: 500
}

.demand .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5DCAA5;
    margin-right: 8px;
    vertical-align: middle
}

header.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 250, 248, .92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 18px
}

.brand .mark {
    width: 34px;
    height: 34px;
    flex: none
}

.brand small {
    display: block;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: -2px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft)
}

.nav-links a:hover {
    color: var(--ink)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 12px 22px;
    border-radius: 99px;
    border: 1.5px solid transparent;
    transition: .18s;
    white-space: nowrap
}

.btn-primary {
    background: var(--tomato);
    color: #fff
}

.btn-primary:hover {
    background: var(--tomato-dark)
}

.btn-green {
    background: var(--basil);
    color: #fff
}

.btn-green:hover {
    background: var(--basil-dark)
}

.btn-ghost {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink)
}

.btn-ghost:hover {
    background: var(--ink);
    color: var(--paper)
}

.btn-lg {
    padding: 15px 30px;
    font-size: 15px
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 26px;
    color: var(--ink)
}

.hero {
    padding: 80px 0 68px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 56px;
    align-items: center
}

.hero h1 {
    font-size: clamp(33px, 5vw, 56px);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -.02em;
    margin-bottom: 22px
}

.hero h1 em {
    font-style: normal;
    color: var(--tomato)
}

.hero p.lede {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 31em;
    margin-bottom: 30px
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    font-size: 13.5px;
    color: var(--ink-soft)
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px
}

.hero-meta b {
    color: var(--basil-dark);
    font-weight: 600
}

.hero-art .plate {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: block
}

.hero-note {
    text-align: center;
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 16px
}

.trustbar {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--linen)
}

.trustbar .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 38px;
    justify-content: center;
    padding: 22px 24px
}

.trustbar span {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 9px
}

.trustbar b {
    color: var(--basil-dark);
    font-weight: 600
}

.section {
    padding: 84px 0
}

.section h2 {
    font-size: clamp(27px, 3.4vw, 40px);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.12;
    margin-bottom: 16px
}

.section .intro {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 38em;
    margin-bottom: 46px
}

.section.alt {
    background: var(--linen)
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px
}

.value {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 26px 24px
}

.value .ico {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--basil-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.value .ico svg {
    width: 22px;
    height: 22px;
    stroke: var(--basil-dark);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.value h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 7px
}

.value p {
    font-size: 14.5px;
    color: var(--ink-soft)
}

/* comparison */
.compare {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px
}

.vs {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 26px 24px
}

.vs .alt {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 10px
}

.vs .alt s {
    text-decoration-color: var(--tomato);
    text-decoration-thickness: 1.5px
}

.vs h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--basil-dark)
}

.vs p {
    font-size: 14.5px;
    color: var(--ink-soft)
}

.meet {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 56px;
    align-items: center
}

.photo-slot {
    aspect-ratio: 4/5;
    border-radius: var(--r);
    background: repeating-linear-gradient(45deg, #ECEAE2 0 14px, #E6E3DA 14px 28px);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    font-size: 13px;
    text-align: center;
    padding: 24px
}

.meet h2 {
    margin-bottom: 18px
}

.meet p {
    color: var(--ink-soft);
    margin-bottom: 16px;
    max-width: 42em
}

.meet .creds {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 4px
}

.meet .creds span {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--basil-dark);
    background: var(--basil-tint);
    border-radius: 99px;
    padding: 6px 14px
}

.meet .sign {
    font-weight: 600;
    color: var(--ink);
    margin-top: 18px
}

/* map provenance */
.maprow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center
}

.mapcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 20px;
    display: flex;
    justify-content: center
}

.italy {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block
}

.regions .reg {
    padding: 16px 0;
    border-bottom: 1px solid var(--line)
}

.regions .reg:first-child {
    padding-top: 0
}

.regions .reg:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.regions .place {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 3px
}

.regions .place i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tomato);
    flex: none
}

.regions .reg p {
    font-size: 14.5px;
    color: var(--ink-soft)
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 30px 28px;
    display: flex;
    flex-direction: column
}

.card.feature {
    border-color: var(--basil);
    box-shadow: 0 0 0 1px var(--basil)
}

.card .tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--basil-dark);
    margin-bottom: 14px
}

.card h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 8px
}

.card .desc {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 20px;
    flex: 1
}

.card .price {
    font-size: 29px;
    font-weight: 600;
    letter-spacing: -.01em
}

.card .price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--ink-soft)
}

.card .price .from {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 2px
}

.terms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px 30px;
    margin-top: 34px;
    font-size: 14px;
    color: var(--ink-soft)
}

.terms div {
    display: flex;
    gap: 11px;
    align-items: flex-start
}

.terms b {
    color: var(--ink);
    font-weight: 600
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 38px 52px
}

.course h3 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--tomato-dark);
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line)
}

.dish {
    margin-bottom: 16px
}

.dish .name {
    font-weight: 500;
    font-size: 16px
}

.dish .note {
    font-size: 13.5px;
    color: var(--ink-soft)
}

.menu-foot {
    margin-top: 42px;
    font-size: 14px;
    color: var(--ink-soft);
    text-align: center;
    max-width: 40em;
    margin: 42px auto 0
}

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

.step .num {
    font-size: 13px;
    font-weight: 600;
    color: var(--tomato);
    letter-spacing: .1em
}

.step h3 {
    font-size: 19px;
    font-weight: 600;
    margin: 10px 0 8px
}

.step p {
    font-size: 14.5px;
    color: var(--ink-soft)
}

.midcta {
    background: var(--basil);
    color: #fff;
    text-align: center
}

.midcta .wrap {
    padding: 56px 24px
}

.midcta h2 {
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    margin-bottom: 12px
}

.midcta p {
    color: #D6E7DE;
    font-size: 16px;
    margin-bottom: 26px;
    max-width: 34em;
    margin-left: auto;
    margin-right: auto
}

.midcta .btn-ghost {
    border-color: #fff;
    color: #fff
}

.midcta .btn-ghost:hover {
    background: #fff;
    color: var(--basil-dark)
}

.faq {
    max-width: 760px;
    margin: 0 auto
}

.faq details {
    border-bottom: 1px solid var(--line)
}

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    font-weight: 500;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

.faq summary::-webkit-details-marker {
    display: none
}

.faq summary .plus {
    flex: none;
    font-size: 22px;
    color: var(--basil);
    transition: .2s;
    line-height: 1
}

.faq details[open] summary .plus {
    transform: rotate(45deg)
}

.faq .ans {
    padding: 0 0 24px;
    color: var(--ink-soft);
    font-size: 15.5px;
    max-width: 64ch
}

.contact {
    background: var(--espresso);
    color: #F4F2EC
}

.contact h2 {
    color: #fff
}

.contact .intro {
    color: #C8C3B8
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: start
}

.contact-aside p {
    color: #C8C3B8;
    font-size: 15px;
    margin-bottom: 18px;
    max-width: 34em
}

.contact-aside .line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    margin-bottom: 14px
}

.contact-aside .line b {
    color: #fff;
    font-weight: 500
}

.scarce {
    background: #262320;
    border: 1px solid #3A3631;
    border-radius: var(--r);
    padding: 18px 20px;
    font-size: 14px;
    color: #D6E7DE;
    margin-top: 24px;
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.scarce .dot {
    margin-top: 7px;
    flex: none;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5DCAA5
}

form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 7px;
    color: #E7E4DC
}

form .field {
    margin-bottom: 18px
}

input,
select,
textarea {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    color: #fff;
    background: #262320;
    border: 1px solid #3A3631;
    border-radius: 10px;
    padding: 12px 14px;
    transition: .16s
}

input::placeholder,
textarea::placeholder {
    color: #8B857B
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--basil);
    box-shadow: 0 0 0 3px rgba(46, 107, 77, .35)
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238B857B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center
}

textarea {
    resize: vertical;
    min-height: 92px
}

form .err {
    color: #F0997B;
    font-size: 12.5px;
    margin-top: 5px;
    display: none
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
    border-color: var(--tomato)
}

.field.invalid .err {
    display: block
}

.submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 6px;
    flex-wrap: wrap
}

.form-success {
    display: none;
    background: #22302a;
    border: 1px solid var(--basil);
    border-radius: var(--r);
    padding: 30px;
    text-align: center
}

.form-success h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px
}

.form-success p {
    color: #C8C3B8;
    font-size: 15px
}

footer {
    background: var(--ink);
    color: #B9B4AB;
    font-size: 13.5px
}

.foot-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 30px 24px
}

footer a:hover {
    color: #fff
}

@media (max-width:1024px) {
    .section {
        padding: 68px 0
    }

    .hero {
        padding: 60px 0 52px
    }

    .hero-grid {
        gap: 40px
    }

    .maprow {
        gap: 40px
    }
}

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

    .nav-links.open {
        display: flex;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 18px;
        background: var(--paper);
        padding: 24px;
        border-bottom: 1px solid var(--line)
    }

    .nav-toggle {
        display: block
    }

    .hero-grid,
    .meet,
    .contact-grid,
    .maprow {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .hero-art {
        order: -1;
        max-width: 300px;
        margin: 0 auto
    }

    .photo-slot {
        max-width: 320px
    }

    .mapcard {
        order: -1
    }

    .italy {
        max-width: 300px
    }
}

@media (max-width:520px) {
    .wrap {
        padding: 0 18px
    }

    form .row {
        grid-template-columns: 1fr
    }

    .section {
        padding: 54px 0
    }

    .hero h1 {
        font-size: 32px
    }

    .demand {
        font-size: 12px
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch
    }

    .hero-cta .btn {
        flex: 1 1 auto
    }
}