:root {
    --bg: #141110;
    --bg2: #1b1613;
    --card: #1e1813;
    --gold: #d4ad7a;
    --goldLt: #e8c87e;
    --cream: #f5efe3;
    --text: rgba(245, 239, 227, .82);
    --muted: rgba(245, 239, 227, .53);
    --line: rgba(212, 173, 122, .2);
    --soft: rgba(245, 239, 227, .09);
    --display: 'Cormorant Garamond', Georgia, serif;
    --body: 'Outfit', sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-weight: 300;
    line-height: 1.65
}

.container {
    max-width: 1240px
}

.site-header {
    background: rgba(20, 17, 16, .84);
    border-bottom: 1px solid var(--soft);
    backdrop-filter: blur(15px)
}

.navbar {
    min-height: 74px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: var(--cream);
    text-decoration: none
}

.brand:hover,
.brand:focus {
    color: var(--cream) !important;
    text-decoration: none
}

.brand-word {
    font-family: var(--body);
    font-weight: 700;
    font-size: 1.45rem;
    letter-spacing: .13em;
    line-height: 1
}

.brand__mark {
    display: block;
    width: auto;
    height: 2.25rem
}

.brand small {
    font-size: .5rem;
    color: var(--gold);
    letter-spacing: .28em;
    font-weight: 600
}

.nav-links {
    gap: 2.1rem
}

.nav-links .nav-link {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase
}

.nav-links .nav-link.active,
.nav-links .nav-link:hover {
    color: var(--goldLt)
}

.nav-toggle {
    border: 0;
    color: var(--cream);
    font-size: 1.25rem;
    padding: .25rem
}

.nav-toggle:focus {
    box-shadow: none
}

.lang-switch {
    border: 1px solid var(--soft);
    border-radius: 99px;
    overflow: hidden;
    display: flex
}

.lang-switch button {
    padding: .34rem .78rem;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: .64rem;
    letter-spacing: .14em;
    font-weight: 600
}

.lang-switch button.is-active {
    background: linear-gradient(135deg, var(--goldLt), #b8935a);
    color: #1a1410
}

.collection-section {
    padding: clamp(4.4rem, 9vw, 8rem) 0
}

.section-head {
    max-width: 720px;
    text-align: center;
    margin: 0 auto clamp(2.4rem, 5vw, 4rem)
}

.eyebrow {
    font-size: .7rem;
    letter-spacing: .32em;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase
}

.section-head h1 {
    font-family: var(--display);
    font-size: clamp(3rem, 6vw, 4.4rem);
    color: var(--cream);
    font-weight: 300;
    line-height: 1;
    margin: 1rem 0
}

.section-head em {
    color: var(--goldLt)
}

.section-head p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 680px;
    margin: auto
}

.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 2.4rem
}

.filter {
    background: transparent;
    border: 1px solid var(--soft);
    border-radius: 99px;
    color: var(--muted);
    font-size: .72rem;
    letter-spacing: .14em;
    font-weight: 600;
    padding: .6rem 1.3rem;
    text-transform: uppercase;
    transition: background .32s ease, border-color .32s ease, color .24s ease, transform .24s ease
}

.filter:hover {
    color: var(--cream);
    border-color: var(--line)
}

.filter:active {
    transform: scale(.96)
}

.filter.is-active {
    border-color: transparent;
    color: #1a1410;
    background: linear-gradient(135deg, var(--goldLt), #b8935a);
    animation: filter-select .38s cubic-bezier(.2, .8, .2, 1)
}

.count {
    text-align: center;
    color: var(--muted);
    font-size: .78rem;
    letter-spacing: .08em;
    margin-bottom: 1.5rem
}

.cocktail-col {
    width: 100%;
    max-width: 340px
}

#cocktail-grid > *,
#featured-grid > * {
    transition: opacity .16s ease, transform .16s ease
}

#cocktail-grid.is-filtering > *,
#featured-grid.is-filtering > * {
    opacity: 0;
    transform: translateY(10px) scale(.985)
}

#cocktail-grid.is-filtering-in > *,
#featured-grid.is-filtering-in > * {
    animation: filter-card-in .52s cubic-bezier(.2, .8, .2, 1) both;
    animation-delay: calc(var(--filter-index) * 55ms)
}

@keyframes filter-select {
    0% { transform: scale(.92) }
    65% { transform: scale(1.04) }
    100% { transform: scale(1) }
}

@keyframes filter-card-in {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98)
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@media (prefers-reduced-motion: reduce) {
    .filter,
    #cocktail-grid > *,
    #featured-grid > * {
        animation: none !important;
        transition: none
    }
}

.cocktail-card {
    background: var(--card);
    border: 1px solid var(--soft);
    border-radius: 6px;
    color: inherit;
    display: block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: .35s;
    cursor: pointer
}

.cocktail-card:hover {
    border-color: var(--line);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .42);
    color: inherit;
    transform: translateY(-6px)
}

.card-media {
    aspect-ratio: 4/5;
    background: #0e0b09;
    overflow: hidden
}

.card-media img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform .7s
}

.cocktail-card:hover img {
    transform: scale(1.06)
}

.card-media:after {
    background: linear-gradient(180deg, transparent 43%, rgba(14, 11, 9, .9));
    content: "";
    inset: 0;
    position: absolute
}

.card-spirit {
    background: rgba(20, 17, 16, .65);
    border: 1px solid var(--line);
    border-radius: 99px;
    color: var(--goldLt);
    font-size: .6rem;
    font-weight: 700;
    left: 50%;
    letter-spacing: .16em;
    padding: .35rem .8rem;
    position: absolute;
    top: 14px;
    transform: translateX(-50%);
    text-transform: uppercase;
    z-index: 1
}

.card-body {
    bottom: 0;
    left: 0;
    padding: 1.25rem 1.3rem 1.45rem;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 1
}

.card-name {
    color: var(--cream);
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.1
}

.card-base {
    color: var(--muted);
    font-size: .76rem;
    margin-top: .45rem
}

.card-go {
    color: var(--gold);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .16em;
    margin-top: .85rem;
    opacity: 0;
    text-transform: uppercase;
    transform: translateY(6px);
    transition: .3s
}

.cocktail-card:hover .card-go {
    opacity: 1;
    transform: none
}

.site-footer {
    background: #0e0b09;
    border-top: 1px solid var(--soft);
    padding: 4rem 0 2.5rem
}

.footer-grid {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.footer-nav {
    display: flex;
    gap: 1.6rem
}

.footer-nav a {
    color: var(--muted);
    font-size: .8rem;
    text-decoration: none
}

.footer-nav a:hover {
    color: var(--goldLt)
}

.disclaimer {
    color: var(--muted);
    font-size: .84rem;
    font-style: italic;
    line-height: 1.75;
    margin: 2.5rem auto;
    max-width: 820px;
    text-align: center
}

.footer-bottom {
    border-top: 1px solid var(--soft);
    color: var(--muted);
    font-size: .74rem;
    margin: 0;
    padding-top: 1.5rem;
    text-align: center
}

.recipe-modal {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    overflow: hidden
}

.modal-close {
    background: rgba(20, 17, 16, .7);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--cream);
    font-size: 1.8rem;
    height: 38px;
    line-height: 1;
    position: absolute;
    right: 16px;
    top: 16px;
    width: 38px;
    z-index: 4
}

.recipe-image {
    height: 100%;
    max-height: 630px;
    object-fit: cover;
    width: 100%
}

.recipe-copy {
    padding: clamp(2rem, 5vw, 4rem)
}

.recipe-copy h2 {
    color: var(--cream);
    font-family: var(--display);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin: .5rem 0 1.3rem
}

.base-pill {
    border: 1px solid var(--line);
    border-radius: 99px;
    color: var(--goldLt);
    display: inline-block;
    font-size: .72rem;
    padding: .45rem .85rem
}

.recipe-label {
    border-bottom: 1px solid var(--line);
    color: var(--gold);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .2em;
    margin: 2rem 0 1rem;
    padding-bottom: .7rem;
    text-transform: uppercase
}

.recipe-copy ul {
    padding-left: 1.1rem
}

.recipe-copy li {
    margin-bottom: .45rem
}

.recipe-copy li::marker {
    color: var(--gold)
}

.reveal {
    animation: rise .65s ease both
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width:767px) {
    .navbar-collapse {
        background: var(--bg2);
        margin: 1rem -12px -12px;
        padding: 1rem
    }

    .nav-links {
        gap: 0
    }

    .nav-links .nav-link {
        padding: .8rem
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center
    }

    .recipe-image {
        max-height: 390px
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        animation: none !important;
        transition: none !important
    }
}

/* Home page: Bootstrap provides the layout; these rules reproduce the editorial finish. */
.hero {
    position: relative;
    min-height: calc(92vh - 74px);
    min-height: calc(92svh - 74px);
    display: grid;
    place-items: center;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(1200px 600px at 50% -10%, rgba(212, 173, 122, .16), transparent 60%), radial-gradient(900px 700px at 80% 110%, rgba(184, 147, 90, .10), transparent 60%), linear-gradient(180deg, #171310, #0e0b09);
    padding-bottom: 100px;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: .5;
    background-image: radial-gradient(rgba(212, 173, 122, .1) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, transparent, #000 25%, #000 70%, transparent)
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 950px;
    padding: 5rem 1.5rem
}

.hero-logo {
    color: var(--cream);
    line-height: 0;
    margin: 0 auto 1.4rem;
    width: min(100px, 52vw)
}

.hero-logo .brand__mark {
    height: auto;
    width: 100%
}

.hero h1 {
    color: var(--cream);
    font-family: var(--display);
    font-size: clamp(3.3rem, 9vw, 7rem);
    font-weight: 300;
    line-height: 1.02;
    margin: 1.5rem 0 1.2rem
}

.hero-brand-title {
    font-size: clamp(4.5rem, 11vw, 8.5rem) !important
}

.hero em,
.section-head em {
    color: var(--goldLt);
    font-style: italic
}

.hero-title {
    color: var(--goldLt) !important;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem) !important;
    margin-top: 20px;;
}

.hero-title em {
    color: inherit
}

.hero p {
    color: rgba(245, 239, 227, .72);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
    margin: 0 auto 2.5rem;
    max-width: 650px
}

.btn-gold {
    background: linear-gradient(135deg, var(--goldLt), #b8935a);
    border-radius: 2px;
    color: #1a1410;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .16em;
    padding: 1rem 2rem;
    text-transform: uppercase
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--goldLt), #b8935a);
    box-shadow: 0 12px 30px rgba(212, 173, 122, .25);
    color: #1a1410;
    transform: translateY(-2px)
}

.hero-scroll {
    bottom: 1.6rem;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    font-size: .62rem;
    gap: .5rem;
    left: 50%;
    letter-spacing: .2em;
    position: absolute;
    text-transform: uppercase;
    transform: translateX(-50%)
}

.hero-scroll i {
    background: linear-gradient(var(--gold), transparent);
    height: 2.5rem;
    margin: auto;
    width: 1px
}

.section {
    padding: clamp(4.5rem, 10vw, 8rem) 0
}

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

.section-head {
    margin: 0 auto clamp(2.4rem, 5vw, 4rem);
    max-width: 720px;
    text-align: center
}

.section-head.wide {
    max-width: 820px
}

.section-head h2,
.section-head h1 {
    color: var(--cream);
    font-family: var(--display);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 300;
    line-height: 1.04;
    margin: 1rem 0
}

.section-head p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.8
}

.craft-lines {
    display: grid;
    gap: 1.5rem
}

.craft-lines p,
.craft-line {
    color: var(--cream);
    font-family: var(--display);
    font-size: clamp(1.55rem, 3.3vw, 2.35rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    margin: 0 auto;
    max-width: 900px;
    text-align: center
}

.craft-lines b,
.craft-line b {
    color: var(--goldLt);
    font-style: normal;
    font-weight: 400
}

.detail-image {
    border: 1px solid var(--soft);
    border-radius: 8px;
    max-width: 100%;
    width: 100%
}

.detail-copy {
    max-width: 620px
}

.detail-copy h1 {
    color: var(--cream);
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.04;
    margin: .6rem 0 1.3rem
}

.detail-copy ul {
    padding-left: 1.2rem
}

.detail-copy li {
    margin-bottom: .55rem
}

.detail-copy li::marker {
    color: var(--gold)
}

.back-link {
    color: var(--muted);
    display: inline-block;
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .13em;
    margin-bottom: 2rem;
    text-decoration: none;
    text-transform: uppercase
}

.back-link:hover {
    color: var(--goldLt)
}

.featured-recipe {
    background: var(--card);
    border: 1px solid var(--soft);
    border-radius: 8px;
    display: grid;
    grid-template-columns: minmax(280px, 42%) 1fr;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0
}

.featured-recipe-image {
    min-height: 440px;
    position: relative
}

.featured-recipe-image img {
    height: 100%;
    object-fit: cover;
    width: 100%
}

.featured-recipe-copy {
    padding: 2.25rem clamp(1.75rem, 4vw, 3rem)
}

.featured-recipe-copy h3 {
    color: var(--cream);
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.04;
    margin: .35rem 0 1rem;
}

.featured-recipe-copy ul {
    padding-left: 1.2rem
}

.featured-recipe-copy li {
    margin-bottom: .3rem
}

.featured-recipe-copy li::marker {
    color: var(--gold)
}

.featured-recipe-copy .recipe-label {
    margin: 1.25rem 0 .65rem;
    padding-bottom: .5rem
}

@media(max-width:767px) {
    .featured-recipe {
        grid-template-columns: 1fr
    }

    .featured-recipe-image {
        min-height: 320px;
        max-height: 480px
    }
}

.spirit-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: #1a1410;
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: var(--goldLt);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1;
    padding: .55rem .8rem;
    text-transform: uppercase
}

.base-pill {
    border: 0;
    border-radius: 0;
    padding: 0
}

.featured-recipe-copy>h4 {
    font-family: var(--display)
}

.title-mocktail{
    font-size: 34px;
    margin-bottom: 2px;
}

.card-receta .base-pill{
    font-size: 16px;
    line-height: 1;
}

.card-receta .recipe-label{
    font-size: 14px;
    font-family: "Outfit";
    font-weight: 500;;
}

.count{
    font-size: 15px;
}

.contact-section {
    background: linear-gradient(180deg, var(--bg) 0%, #0e0b09 100%);
    border-top: 1px solid var(--soft)
}

.contact-page {
    min-height: calc(100vh - 74px)
}

.contact-page .section-head h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.4rem)
}

.contact-form {
    margin: 0 auto;
    max-width: 920px
}

.contact-form__intro,
.contact-group legend {
    color: var(--goldLt);
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 400
}

.contact-form__intro {
    border-bottom: 1px solid var(--soft);
    margin: 0 0 1.75rem;
    padding-bottom: 1rem
}

.contact-form__intro span {
    color: var(--muted);
    display: block;
    font-family: var(--body);
    font-size: .75rem;
    margin-top: .25rem
}

.contact-group {
    border: 0;
    border-top: 1px solid var(--soft);
    margin: 2rem 0 0;
    padding: 1.5rem 0 0
}

.contact-group legend {
    float: none;
    margin: 0 0 1.15rem;
    padding: 0;
    width: auto
}

.contact-form__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.contact-field {
    display: grid;
    gap: .5rem
}

.contact-control {
    display: block;
    position: relative
}

.contact-control > svg,
.contact-captcha label > svg {
    color: var(--gold);
    height: 1.05rem;
    left: 1rem;
    pointer-events: none;
    position: absolute;
    stroke-width: 1.6;
    top: 50%;
    transform: translateY(-50%);
    width: 1.05rem
}

.contact-control--textarea > svg {
    top: 1.1rem;
    transform: none
}

.contact-control--select > svg {
    height: 1.35rem;
    left: auto;
    right: 1rem;
    width: 1.35rem
}

.contact-field--wide {
    grid-column: 1 / -1
}

.contact-field span,
.contact-captcha__label {
    color: var(--cream);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase
}

.contact-field input,
.contact-field textarea,
.contact-captcha input,
.contact-field select {
    appearance: none;
    background: rgba(245, 239, 227, .035);
    border: 1px solid var(--soft);
    border-radius: 2px;
    color: var(--cream);
    font: inherit;
    outline: none;
    padding: .9rem 1rem;
    transition: border-color .2s ease, background .2s ease
}

.contact-field input,
.contact-field textarea,
.contact-field select {
    font-size: 17px;
    font-weight: 500;
    padding-left: 3rem;
    width: 100%
}

.contact-field select {
    background-color: rgba(245, 239, 227, .035);
    padding-left: 1rem;
    padding-right: 3rem
}

.contact-field select option {
    background: var(--bg2);
    color: var(--cream)
}

.contact-field textarea {
    min-height: 160px;
    resize: vertical
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-captcha input:focus,
.contact-field select:focus {
    background: rgba(245, 239, 227, .06);
    border-color: var(--gold)
}

.contact-form__footer {
    align-items: end;
    border-top: 1px solid var(--soft);
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    margin-top: 1.75rem;
    padding-top: 1.5rem
}

.contact-options {
    display: grid;
    gap: .65rem 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.contact-options label,
.contact-consent label {
    align-items: flex-start;
    color: var(--text);
    cursor: pointer;
    display: flex;
    font-size: .92rem;
    gap: .65rem;
    line-height: 1.45
}

.contact-options input,
.contact-consent input {
    accent-color: var(--gold);
    flex: 0 0 auto;
    height: 1rem;
    margin-top: .18rem;
    width: 1rem
}

.contact-consent {
    display: grid;
    gap: .8rem
}

.contact-captcha {
    display: grid;
    gap: .45rem
}

.contact-captcha label {
    align-items: center;
    color: var(--goldLt);
    display: flex;
    font-family: var(--display);
    font-size: 1.35rem;
    gap: .75rem;
    position: relative
}

.contact-captcha label > svg {
    left: 0;
    position: static;
    transform: none
}

.contact-captcha input {
    font-family: var(--body);
    font-size: .95rem;
    padding: .5rem .65rem;
    text-align: center;
    width: 4.5rem
}

.contact-captcha small {
    color: var(--muted);
    font-size: .75rem
}

.contact-submit {
    border: 0;
    white-space: nowrap
}

.contact-status {
    color: var(--goldLt);
    font-size: .82rem;
    margin: 1rem 0 0;
    min-height: 1.3rem;
    text-align: right
}

.contact-privacy {
    color: var(--muted);
    font-size: .78rem;
    margin: .5rem 0 0;
    text-align: right
}

.contact-trap {
    height: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 0
}

.contact-success-modal .modal-content {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--cream);
    text-align: center
}

.contact-success-modal .modal-body {
    padding: 3.5rem 2rem
}

.contact-success-modal__close {
    background: transparent;
    border: 0;
    color: var(--muted);
    font-size: 2rem;
    line-height: 1;
    padding: .5rem .8rem;
    position: absolute;
    right: 0;
    top: 0
}

.contact-success-modal__close:hover {
    color: var(--cream)
}

.contact-success-modal__check {
    align-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--goldLt);
    display: inline-flex;
    height: 5rem;
    justify-content: center;
    width: 5rem
}

.contact-success-modal__check svg {
    height: 2.5rem;
    stroke-width: 1.5;
    width: 2.5rem
}

.contact-success-modal.show .contact-success-modal__check {
    animation: success-check .55s cubic-bezier(.2, .8, .2, 1) both
}

.contact-success-modal h2 {
    color: var(--cream);
    font-family: var(--display);
    font-size: clamp(2.1rem, 5vw, 3rem);
    font-weight: 300;
    margin: 1.35rem 0 0
}

.contact-success-modal__accept {
    border: 0;
    margin-top: 1.5rem
}

@keyframes success-check {
    0% { opacity: 0; transform: scale(.45) rotate(-20deg) }
    70% { opacity: 1; transform: scale(1.12) rotate(4deg) }
    100% { transform: scale(1) rotate(0) }
}

@media(max-width:767px) {
    .contact-form__grid {
        grid-template-columns: 1fr
    }

    .contact-options {
        grid-template-columns: 1fr
    }

    .contact-field--wide {
        grid-column: auto
    }

    .contact-form__footer {
        align-items: stretch;
        flex-direction: column
    }

    .contact-submit,
    .contact-status,
    .contact-privacy {
        text-align: center;
        width: 100%
    }
}