﻿
/* ==========================================================================
   KAFFA COFFEE HOUSE â€” Preview Stylesheet
   The aesthetic: dark moody coffee browns + sage green accent + Playfair/Montserrat
   This is a STANDALONE preview file. Not yet wired to Django. Not a theme yet.
   Open this file in a browser to see the proposed Kaffa look.
   ========================================================================== */

:root {
    --color-bg-dark:       #1a1a1a;
    --color-bg-darker:     #0d0d0d;
    --color-bg-coffee:     #2b1d14;
    --color-bg-section:    #161616;
    --color-accent:        #5a7c5a;          /* sage / forest green */
    --color-accent-hover:  #6b8e6b;
    --color-accent-dark:   #4a6b4a;
    --color-cream:         #f5efe6;          /* torn-paper cream */
    --color-text:          #ffffff;
    --color-text-soft:     #c5c5c5;
    --color-text-muted:    #888888;
    --color-line:          rgba(255, 255, 255, 0.08);
    --font-display:        'Playfair Display', Georgia, serif;
    --font-heading:        'Montserrat', sans-serif;
    --font-body:           'Lato', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--color-accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-accent-hover); }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   TOP PROMO BAR
   ========================================================================== */
.promo-bar {
    background: var(--color-bg-darker);
    border-bottom: 1px solid var(--color-line);
    padding: 8px 0;
    font-size: 12px;
    color: var(--color-text-soft);
    text-align: center;
    letter-spacing: 0.05em;
}
.promo-bar strong { color: var(--color-accent); font-weight: 600; }

/* ==========================================================================
   MAIN HEADER / NAV
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26, 26, 26, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-line);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
}
.brand .brand-mark {
    width: 44px;
    height: 44px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.brand small {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--color-text-muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 400;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.main-nav a {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding: 4px 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform .25s ease;
    transform-origin: left;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

/* ==========================================================================
   KAFFA HEADER ACTIONS (cart icon + button group)
   ========================================================================== */
.kaffa-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}
.kaffa-cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--color-text);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background .2s ease, border-color .2s ease, color .2s ease;
    text-decoration: none;
}
.kaffa-cart-icon:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: rgba(90, 124, 90, 0.08);
}
.kaffa-cart-icon__count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.96);
    transition: transform .2s ease;
}
.kaffa-cart-icon__count.cart-bounce {
    animation: kaffaCartBounce .35s ease;
}
@keyframes kaffaCartBounce {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.45); }
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color .2s ease, transform .05s ease;
}
.btn:hover { background: var(--color-accent-hover); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn--outline { background: transparent; border: 1.5px solid var(--color-accent); }
.btn--outline:hover { background: var(--color-accent); color: #fff; }
.btn--lg { padding: 18px 40px; font-size: 14px; }

/* ==========================================================================
   HERO SLIDER â€” multi-slide carousel with torn-paper overlay
   ========================================================================== */
.hero {
    position: relative;
    min-height: 760px;
    background: var(--color-bg-darker);
    overflow: hidden;
}
.hero__viewport {
    position: relative;
    width: 100%;
    height: 760px;
    overflow: hidden;
}
.hero__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .8s cubic-bezier(.4, 0, .2, 1);
}
.hero__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55) saturate(0.95);
}
.hero__slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0.85) 100%);
}
.hero__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 80px 0;
}
.hero__paper-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}
.hero__paper {
    position: relative;
    width: 100%;
    max-width: 560px;
    background: var(--color-cream);
    color: #1a1a1a;
    padding: 80px 60px 100px;
    border-radius: 4px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
    clip-path: polygon(
        0% 6%, 3% 4%, 7% 5%, 12% 3%, 18% 5%, 25% 2%, 32% 4%, 40% 3%, 48% 5%, 56% 2%, 64% 4%, 72% 3%, 80% 5%, 88% 3%, 94% 4%, 100% 5%,
        100% 25%, 99% 35%, 100% 50%, 99% 65%, 100% 80%, 100% 95%,
        95% 97%, 88% 95%, 80% 97%, 72% 95%, 64% 97%, 56% 96%, 48% 98%, 40% 96%, 32% 98%, 24% 96%, 16% 98%, 8% 96%, 0% 97%,
        1% 80%, 0% 60%, 1% 40%, 0% 20%
    );
    background-image:
        radial-gradient(circle at 20% 20%, rgba(150, 120, 90, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(150, 120, 90, 0.07) 0%, transparent 50%),
        linear-gradient(135deg, var(--color-cream) 0%, #ebe1d2 100%);
}
.hero__paper::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    pointer-events: none;
}
.hero__eyebrow {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--color-accent-dark);
    margin-bottom: 18px;
}
.hero__title {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1.02;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}
.hero__title em {
    font-style: italic;
    color: var(--color-accent-dark);
}
.hero__sub {
    font-family: var(--font-body);
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 400px;
}
.hero__cta-wrap {
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    z-index: 3;
}
.hero__cta {
    background: var(--color-accent);
    color: #fff;
    padding: 22px 50px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 12px 30px -8px rgba(90, 124, 90, 0.6);
    transition: background-color .2s ease, transform .05s ease;
}
.hero__cta:hover { background: var(--color-accent-hover); color: #fff; }
.hero__cta:active { transform: translateY(1px); }

/* Slider arrows â€” left/right */
.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}
.hero__arrow:hover { background: var(--color-accent); border-color: var(--color-accent); }
.hero__arrow--prev { left: 28px; }
.hero__arrow--next { right: 28px; }
.hero__arrow svg { width: 22px; height: 22px; fill: currentColor; }

/* Slider dots â€” bottom center */
.hero__dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}
.hero__dots span {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background-color .25s ease, width .25s ease;
}
.hero__dots span.active { background: var(--color-accent); width: 32px; border-radius: 6px; }

/* Stat counter on the right side of the slide */
.hero__numbers {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    color: var(--color-text-soft);
    display: grid;
    gap: 36px;
    text-align: right;
}
.hero__numbers > div { text-align: right; }
.hero__numbers strong {
    display: block;
    font-family: var(--font-display);
    font-size: 64px;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 700;
}
.hero__numbers span {
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

/* ==========================================================================
   LOUNGE INTRO â€” 3 image grid
   ========================================================================== */
.lounge {
    background: var(--color-bg-dark);
    padding: 120px 0 140px;
}
.lounge .container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    gap: 80px;
}
.lounge__headline {
    font-family: var(--font-heading);
    font-size: 72px;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.lounge__headline span { color: var(--color-accent); }
.lounge__sub {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 32px;
}
.lounge__desc {
    color: var(--color-text-soft);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 460px;
}
.lounge__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.lounge__grid > div {
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.lounge__grid > div:nth-child(2) { margin-top: 40px; }
.lounge__grid > div:nth-child(3) { margin-top: 20px; }
.lounge__grid img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.lounge__grid > div:hover img { transform: scale(1.06); }

/* ==========================================================================
   MENU SECTION
   ========================================================================== */
.menu {
    background: var(--color-bg-section);
    padding: 120px 0;
    position: relative;
}
.menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/menu-coffee.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.07;
    pointer-events: none;
}
.menu .container { position: relative; z-index: 1; }
.section-eyebrow {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.section-title em { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.section-sub {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 20px;
    color: var(--color-text-soft);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}
.menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.menu-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
}
.menu-card:hover { transform: translateY(-6px); border-color: var(--color-accent); }
.menu-card__img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-bg-darker);
}
.menu-card__img img { width: 100%; height: 100%; object-fit: cover; }
.menu-card__body { padding: 24px 26px 28px; }
.menu-card__title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}
.menu-card__title .price { color: var(--color-accent); font-family: var(--font-display); font-style: italic; font-weight: 700; }
.menu-card__desc {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}
.menu-card__meta {
    display: flex;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.menu-card__meta span { color: var(--color-accent); }

/* ==========================================================================
   ABOUT / WHY CHOOSE US
   ========================================================================== */
.about {
    background: var(--color-bg-coffee);
    padding: 120px 0;
}
.about .container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 80px;
}
.about__img {
    aspect-ratio: 4 / 5;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__body h2 { text-align: left; }
.about__body .section-eyebrow { text-align: left; }
.about__body p {
    color: var(--color-text-soft);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 22px;
}
.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-line);
}
.about__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 44px;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 6px;
}
.about__stat span {
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
    background: var(--color-bg-darker);
    padding: 120px 0;
    text-align: center;
}
.testimonial {
    max-width: 760px;
    margin: 0 auto;
}
.testimonial__quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 28px;
    line-height: 1.4;
    color: var(--color-text);
    margin-bottom: 32px;
    position: relative;
}
.testimonial__quote::before {
    content: '\201C';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: var(--color-accent);
    opacity: 0.3;
    font-family: var(--font-display);
    line-height: 1;
}
.testimonial__name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
}
.testimonial__role {
    color: var(--color-text-muted);
    font-size: 13px;
    margin-top: 4px;
}
.testimonial__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.testimonial__dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--color-line);
    cursor: pointer;
    transition: background-color .2s ease;
}
.testimonial__dots span.active { background: var(--color-accent); }

/* ==========================================================================
   RESERVATION
   ========================================================================== */
.reservation {
    background: var(--color-bg-dark);
    padding: 120px 0;
}
.reservation__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.reservation__img {
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    overflow: hidden;
}
.reservation__img img { width: 100%; height: 100%; object-fit: cover; }
.reservation__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.reservation__form .field { display: flex; flex-direction: column; }
.reservation__form .field.full { grid-column: span 2; }
.reservation__form label {
    font-family: var(--font-heading);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}
.reservation__form input,
.reservation__form select,
.reservation__form textarea {
    background: var(--color-bg-section);
    border: 1px solid var(--color-line);
    color: var(--color-text);
    padding: 14px 16px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color .2s ease;
}
.reservation__form input:focus,
.reservation__form select:focus,
.reservation__form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}
.reservation__form textarea { min-height: 120px; resize: vertical; }
.reservation__form .btn { grid-column: span 2; margin-top: 8px; }

/* ==========================================================================
   TASTY PRODUCTS â€” carousel with 6 coffee bags
   ========================================================================== */
.products {
    background: var(--color-bg-darker);
    padding: 120px 0;
    overflow: hidden;
}
.products__head { text-align: center; margin-bottom: 60px; }
.products__head .section-eyebrow { color: var(--color-accent); }
.products__carousel {
    position: relative;
}
.products__viewport {
    overflow: hidden;
    margin: 0 -10px;
}
.products__track {
    display: flex;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    gap: 0;
}
.products__slide {
    flex: 0 0 calc(100% / 6);
    padding: 0 10px;
    box-sizing: border-box;
    text-align: center;
}
.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: transparent;
    padding: 20px 0;
    transition: transform .3s ease;
}
.product-card:hover,
.product-card:focus { text-decoration: none; color: inherit; outline: none; }
.product-card__img {
    aspect-ratio: 1 / 1.2;
    margin-bottom: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card__img img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform .5s ease;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
}
.product-card:hover .product-card__img img { transform: translateY(-6px) scale(1.04); }
.product-card__name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}
.product-card__price {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
}
.product-card__price--sale { color: #e94e3b; }      /* RED for "on sale" */
.product-card__price--normal { color: var(--color-accent); }   /* GREEN for normal */

.products__arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-line);
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 5;
    transition: background-color .2s ease, border-color .2s ease;
}
.products__arrow:hover { background: var(--color-accent); border-color: var(--color-accent); }
.products__arrow--prev { left: -20px; }
.products__arrow--next { right: -20px; }
.products__arrow svg { width: 18px; height: 18px; fill: currentColor; }

.products__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}
.products__dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--color-line);
    cursor: pointer;
    transition: background-color .2s ease, width .2s ease;
}
.products__dots span.active { background: var(--color-accent); width: 26px; border-radius: 6px; }

.products__cta { text-align: center; margin-top: 48px; }

/* ==========================================================================
   LOUNGE ENHANCED â€” same structure but polished for the original's small details
   ========================================================================== */
.lounge__headline .lounge__green { color: var(--color-accent); display: block; }
.lounge__sub { color: var(--color-text-soft); font-family: var(--font-body); font-style: normal; font-size: 18px; max-width: 480px; line-height: 1.7; }
.lounge__stagger { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lounge__stagger > div:nth-child(2) { margin-top: 50px; }
.lounge__stagger > div:nth-child(3) { margin-top: 25px; }
.lounge__stagger > div { position: relative; overflow: hidden; border-radius: 4px; }
.lounge__stagger img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.lounge__stagger > div:hover img { transform: scale(1.08); }

/* ==========================================================================
   ROASTED COFFEE â€” "Roasted Brasilian Coffee for Your Mood" full-bleed section
   ========================================================================== */
.roasted {
    position: relative;
    padding: 140px 0;
    background: var(--color-bg-darker);
    overflow: hidden;
}
.roasted__bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/roasted-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.45) saturate(0.8);
}
.roasted__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.5) 60%, transparent 100%);
}
.roasted .container { position: relative; z-index: 1; }
.roasted__head { max-width: 640px; }
.roasted .section-eyebrow,
.roasted .section-title { text-align: left; }
.roasted .section-title { font-size: 64px; line-height: 1.05; margin-bottom: 22px; }
.roasted .section-title em { color: var(--color-accent); }
.roasted__desc {
    color: var(--color-text-soft);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 560px;
}
.roasted__stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.roasted__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 700;
}
.roasted__stat span {
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

/* ==========================================================================
   KAFFA LOGO (the circular "coffee market" badge)
   ========================================================================== */
.kaffa-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    position: relative;
    background: var(--color-bg-darker);
}
.kaffa-logo svg { width: 100%; height: 100%; }
.kaffa-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 22px; fill: var(--color-accent); }

/* ==========================================================================
   FOOTER (restyled â€” Kaffa logo + Contact Info + Subscribe)
   ========================================================================== */
.site-footer {
    background: var(--color-bg-darker);
    border-top: 1px solid var(--color-line);
    padding: 80px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 22px;
    font-weight: 600;
}
.footer-col p,
.footer-col a,
.footer-col li {
    color: var(--color-text-soft);
    font-size: 14px;
    line-height: 1.8;
}
.footer-col ul { list-style: none; }
.footer-col a:hover { color: var(--color-accent); }
.footer-brand p { margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.footer-social a:hover { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.footer-bottom {
    border-top: 1px solid var(--color-line);
    padding-top: 24px;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 13px;
}
.footer-bottom strong { color: var(--color-accent); }

/* ==========================================================================
   GO-TOP FAB
   ========================================================================== */
.gotop {
    position: fixed;
    right: 24px;
    bottom: 30px;
    z-index: 50;
    width: 56px; height: 56px;
    background: var(--color-accent);
    color: #fff;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background-color .2s ease, transform .2s ease;
}
.gotop:hover { background: var(--color-accent-hover); transform: translateY(-3px); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .hero__container, .lounge .container, .about .container, .reservation__grid, .roasted__head {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero { min-height: auto; }
    .hero__viewport { height: 640px; }
    .hero__title, .lounge__headline { font-size: 44px; }
    .lounge__sub { font-size: 28px; }
    .section-title { font-size: 40px; }
    .menu__grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .products__slide { flex: 0 0 calc(100% / 3); }
    .roasted .section-title { font-size: 48px; }
    .roasted__stats { gap: 32px; }
    .hero__numbers { display: none; }
    .hero__paper { padding: 50px 40px 70px; }
    .hero__arrow--prev { left: 12px; }
    .hero__arrow--next { right: 12px; }
}
@media (max-width: 640px) {
    .main-nav { display: none; }
    .site-header .container { height: 64px; }
    .hero__viewport { height: 560px; }
    .hero__title { font-size: 36px; }
    .lounge__headline { font-size: 34px; }
    .menu__grid { grid-template-columns: 1fr; }
    .lounge__grid, .lounge__stagger { grid-template-columns: 1fr 1fr; }
    .lounge__grid > div:nth-child(2),
    .lounge__grid > div:nth-child(3),
    .lounge__stagger > div:nth-child(2),
    .lounge__stagger > div:nth-child(3) { margin-top: 0; }
    .reservation__form { grid-template-columns: 1fr; }
    .reservation__form .field.full,
    .reservation__form .btn { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero__cta-wrap { position: static; transform: none; text-align: center; margin-top: 20px; }
    .products__slide { flex: 0 0 calc(100% / 2); }
    .products__arrow { display: none; }
    .roasted .section-title { font-size: 36px; }
    .roasted__stats { flex-wrap: wrap; gap: 24px; }
    .hero__arrow { width: 44px; height: 44px; }
    .hero__paper { padding: 40px 28px 60px; }
}

