@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap');

:root {
    --bg: #f6f0e8;
    --bg-soft: #fbf8f3;
    --surface: #ffffff;
    --surface-dark: #16110d;
    --surface-dark-2: #241812;
    --text: #231813;
    --muted: #7b695d;
    --line: rgba(111, 83, 57, 0.16);
    --accent: #b97a3d;
    --accent-deep: #8a5928;
    --accent-soft: rgba(185, 122, 61, 0.12);
    --shadow: 0 22px 60px rgba(58, 37, 20, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.92), rgba(246,240,232,0.98) 40%),
        linear-gradient(180deg, #f7f2ec 0%, #f2ebe1 100%);
    color: var(--text);
    line-height: 1.6;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
}

.landing-page {
    padding: 16px;
}

.page-shell {
    max-width: 1420px;
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 12px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 28px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 26px;
    background: rgba(23, 16, 12, 0.82);
    backdrop-filter: blur(18px);
    color: #fff5eb;
    box-shadow: 0 18px 50px rgba(17, 10, 6, 0.18);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.35rem;
}

.logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.links ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.links a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 245, 235, 0.86);
}

.links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.links a:hover::after,
.links a:focus-visible::after {
    transform: scaleX(1);
}

.others {
    display: flex;
    align-items: center;
    gap: 10px;
}

.others button,
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    border-radius: 999px;
}

.others button {
    background: rgba(255, 255, 255, 0.06);
    color: #fff5eb;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.others button:hover,
.others button:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.others button ion-icon {
    font-size: 1.25rem;
}

.header-cta,
.primary-cta,
.secondary-cta {
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.header-cta,
.primary-cta {
    background: linear-gradient(135deg, #d69858 0%, #b7773c 100%);
    color: #fff9f2;
    box-shadow: 0 12px 30px rgba(183, 119, 60, 0.22);
}

.secondary-cta {
    background: transparent;
    color: #fffaf4;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.primary-cta:hover,
.secondary-cta:hover,
.header-cta:hover {
    transform: translateY(-2px);
}

.others .bar-btn {
    display: none;
}

.hero-panel {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    border-radius: 34px;
    background:
        linear-gradient(96deg, rgba(17, 11, 8, 0.94) 0%, rgba(17, 11, 8, 0.80) 42%, rgba(17, 11, 8, 0.28) 100%),
        var(--hero-image) center/cover no-repeat,
        linear-gradient(135deg, #2b1b14 0%, #120d0a 100%);
    box-shadow: var(--shadow);
    color: #fff8ef;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at right top, rgba(233, 179, 104, 0.22), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 760px;
    padding: 88px 48px 36px;
}

.hero-copy {
    max-width: 620px;
    padding-top: 60px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #d6aa76;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.eyebrow::after {
    content: '';
    width: 56px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}

.hero-copy h1,
.section-heading h2,
.story-copy h2,
.newsletter-card h2 {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: -0.03em;
}

.hero-copy h1 {
    font-size: clamp(3.6rem, 7vw, 5.8rem);
    line-height: 0.95;
    margin-bottom: 24px;
}

.hero-copy p {
    max-width: 560px;
    color: rgba(255, 247, 238, 0.82);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.metric-item {
    display: grid;
    gap: 4px;
}

.metric-item strong {
    font-size: 1.65rem;
    font-weight: 700;
}

.metric-item span {
    color: rgba(255, 245, 235, 0.72);
    font-size: 0.92rem;
}

.content-section {
    margin-top: 22px;
    padding: 38px;
    border-radius: 30px;
    background: rgba(255, 252, 247, 0.82);
    border: 1px solid rgba(183, 119, 60, 0.12);
    box-shadow: var(--shadow);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 30px;
}

.section-heading h2,
.story-copy h2,
.newsletter-card h2 {
    color: #221712;
    font-size: clamp(2.4rem, 4vw, 3.45rem);
    line-height: 0.95;
}

.section-heading p {
    color: var(--muted);
    max-width: 420px;
    margin-top: 12px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-deep);
    font-weight: 600;
}

.featured-grid,
.blogs-grid,
.reviews-grid {
    display: grid;
    gap: 18px;
}

.featured-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.menu-card,
.blog-card,
.review-card,
.sidebar-box {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
    overflow: hidden;
}

.feature-card,
.menu-card {
    box-shadow: 0 14px 34px rgba(60, 38, 20, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.menu-card:hover,
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(60, 38, 20, 0.12);
}

.feature-image,
.menu-card-image,
.blog-card-image {
    position: relative;
    aspect-ratio: 1.05;
    overflow: hidden;
    background: linear-gradient(180deg, #f4ede5 0%, #efe4d8 100%);
}

.feature-image img,
.menu-card-image img,
.blog-card-image img,
.story-image-wrap img,
.cart-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-body,
.menu-card-body,
.blog-card-body {
    padding: 18px;
}

.chip,
.category-pill,
.badge-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.chip {
    padding: 8px 12px;
    margin-bottom: 14px;
    background: var(--accent-soft);
    color: var(--accent-deep);
}

.feature-body h3,
.menu-card-body h3,
.blog-card-body h3,
.story-copy h2,
.sidebar-box h3,
.sidebar-box h4,
.review-card strong,
.site-footer h3 {
    color: #241914;
}

.feature-body h3,
.menu-card-body h3,
.blog-card-body h3 {
    font-size: 1.18rem;
    margin-bottom: 8px;
}

.feature-body p,
.menu-card-body p,
.blog-card-body p,
.story-copy p,
.review-card p,
.sidebar-box p,
.footer-brand p,
.footer-list li {
    color: var(--muted);
}

.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
}

.card-bottom strong {
    color: var(--accent-deep);
    font-size: 1.16rem;
}

.card-bottom button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c6894a 0%, #a76b34 100%);
    color: #fffdf9;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(167, 107, 52, 0.2);
}

.card-bottom button ion-icon {
    font-size: 1.15rem;
}

.story-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
}

.story-copy {
    padding: 8px 8px 8px 6px;
}

.story-copy p + p {
    margin-top: 14px;
}

.story-copy .primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    margin-top: 24px;
}

.story-image-wrap {
    overflow: hidden;
    border-radius: 28px;
    min-height: 460px;
    background: linear-gradient(180deg, #e8d8c7 0%, #cab09a 100%);
}

.menu-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 22px;
}

.menu-sidebar-card {
    display: grid;
    gap: 16px;
    align-content: start;
}

.sidebar-box {
    padding: 20px;
}

.search-box h3,
.offer-box h3 {
    margin-bottom: 14px;
    font-size: 1.3rem;
}

.sidebar-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
}

.sidebar-search ion-icon,
.note-box ion-icon {
    color: var(--accent-deep);
    font-size: 1.15rem;
}

.sidebar-search input,
.newsletter-form input,
.aside-search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--text);
}

.offer-box {
    background: linear-gradient(180deg, #fff7ef 0%, #f5e3cf 100%);
}

.offer-box .primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    margin-top: 18px;
}

.note-box {
    background: linear-gradient(180deg, #fffdf9 0%, #f8efe5 100%);
}

.note-box h4 {
    margin: 10px 0 6px;
}

.menu-content-card {
    min-width: 0;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.category-pill {
    padding: 10px 18px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.8);
    color: #5f4b3d;
}

.category-pill.active {
    background: linear-gradient(135deg, #d69858 0%, #b7773c 100%);
    border-color: transparent;
    color: #fff8ef;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.badge-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 8px 12px;
    background: rgba(130, 89, 45, 0.9);
    color: #fff9f3;
}

.badge-pill.alt {
    background: rgba(105, 140, 41, 0.92);
}

.reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
    padding: 24px;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #d29a52;
}

.review-card p {
    margin-bottom: 16px;
}

.blogs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
    align-items: stretch;
}

.contact-panel {
    padding: 8px 4px;
}

.contact-panel h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 0.96;
    color: #221712;
    margin-bottom: 16px;
}

.contact-list {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.contact-list div {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.78);
}

.contact-list strong {
    display: block;
    margin-bottom: 6px;
    color: #241914;
}

.contact-list span {
    color: var(--muted);
}

.contact-map {
    overflow: hidden;
    min-height: 420px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: #eadfce;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.blog-card-body span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent-deep);
    font-size: 0.88rem;
    font-weight: 600;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
    padding: 28px 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, #19110d 0%, #2a1c14 100%);
    color: #fff7ef;
    box-shadow: var(--shadow);
}

.feature-strip-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(214, 170, 118, 0.12);
    color: #d6aa76;
    flex: 0 0 auto;
}

.feature-icon ion-icon {
    font-size: 1.3rem;
}

.feature-strip-item h3 {
    margin-bottom: 6px;
    color: #fff7ef;
}

.feature-strip-item p {
    color: rgba(255, 245, 235, 0.7);
}.site-footer {
    margin-top: 22px;
    padding: 0 0 20px;
}

.newsletter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 34px;
    border-radius: 30px;
    background:
        linear-gradient(110deg, rgba(18, 12, 9, 0.96), rgba(29, 19, 13, 0.88)),
        linear-gradient(135deg, #2d1c14 0%, #100c09 100%);
    color: #fff7ef;
    box-shadow: var(--shadow);
}

.newsletter-card p {
    color: rgba(255, 245, 235, 0.78);
    margin-top: 10px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(460px, 100%);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.newsletter-form input {
    color: #fff7ef;
    padding-left: 8px;
}

.newsletter-form button {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d69858 0%, #b7773c 100%);
    color: #fffdf9;
    cursor: pointer;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 22px;
    margin-top: 18px;
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 252, 247, 0.86);
    border: 1px solid rgba(183, 119, 60, 0.12);
    box-shadow: var(--shadow);
}

.footer-logo {
    margin-bottom: 16px;
    color: var(--text);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--accent-deep);
    background: rgba(255,255,255,0.75);
}

.footer-links,
.footer-list,
.aside-navigation ul,
.aside-cart ul {
    list-style: none;
}

.footer-links,
.footer-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.footer-bottom {
    padding: 18px 8px 0;
    text-align: center;
    color: var(--muted);
}

.footer-bottom a {
    color: var(--accent-deep);
}

.aside-navigation,
.aside-cart,
.aside-search {
    position: fixed;
    right: 16px;
    top: 92px;
    width: min(360px, calc(100% - 32px));
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 251, 245, 0.95);
    border: 1px solid rgba(183, 119, 60, 0.18);
    box-shadow: 0 18px 48px rgba(38, 23, 12, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 50;
}

.aside-navigation.active,
.aside-cart.active,
.aside-search.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.aside-navigation ul,
.aside-cart ul {
    display: grid;
    gap: 10px;
}

.aside-navigation a {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.72);
    border: 1px solid var(--line);
    color: var(--text);
    font-weight: 600;
}

.aside-cart li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255,255,255,0.78);
    border: 1px solid var(--line);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.cart-item > div:first-child {
    width: 66px;
    height: 66px;
    overflow: hidden;
    border-radius: 16px;
    flex: 0 0 auto;
}

.cart-item h2 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.cart-item span {
    color: var(--accent-deep);
    font-weight: 700;
}

.aside-cart button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-deep);
    cursor: pointer;
}

.aside-search label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
}

.aside-search ion-icon {
    color: var(--accent-deep);
    font-size: 1.15rem;
}

@media (max-width: 1180px) {
    .featured-grid,
    .menu-grid,
    .blogs-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-layout,
    .story-section,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-card {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 920px) {
    .links {
        display: none;
    }

    .others .bar-btn {
        display: inline-flex;
    }

    .site-header {
        padding: 16px 20px;
    }

    .hero-inner {
        padding: 76px 28px 30px;
        min-height: 680px;
    }

    .hero-copy {
        padding-top: 36px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .content-section,
    .footer-grid {
        padding: 24px;
    }
}

@media (max-width: 720px) {
    .landing-page {
        padding: 10px;
    }

    .site-header {
        top: 8px;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 22px;
    }

    .logo {
        gap: 10px;
        font-size: 1.05rem;
    }

    .logo img {
        width: 42px;
        height: 42px;
    }

    .others {
        gap: 8px;
    }

    .others button,
    .header-cta {
        min-width: 42px;
        height: 42px;
    }

    .header-cta {
        display: none;
    }

    .hero-panel {
        min-height: 640px;
        border-radius: 26px;
        background:
            linear-gradient(180deg, rgba(17, 11, 8, 0.90) 0%, rgba(17, 11, 8, 0.66) 45%, rgba(17, 11, 8, 0.54) 100%),
            var(--hero-image) center right/cover no-repeat,
            linear-gradient(135deg, #2b1b14 0%, #120d0a 100%);
    }

    .hero-inner {
        min-height: 640px;
        padding: 72px 20px 24px;
    }

    .hero-copy h1 {
        font-size: clamp(2.7rem, 12vw, 4rem);
    }

    .hero-copy p {
        font-size: 0.96rem;
    }

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

    .primary-cta,
    .secondary-cta {
        justify-content: center;
        height: 48px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .featured-grid,
    .menu-grid,
    .blogs-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 20px;
        border-radius: 24px;
    }

    .category-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .category-pills::-webkit-scrollbar {
        height: 5px;
    }

    .category-pills::-webkit-scrollbar-thumb {
        background: rgba(185, 122, 61, 0.25);
        border-radius: 999px;
    }

    .category-pill {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .newsletter-card,
    .footer-grid {
        padding: 22px 20px;
        border-radius: 24px;
    }

    .newsletter-form {
        width: 100%;
    }

    .aside-navigation,
    .aside-cart,
    .aside-search {
        right: 10px;
        top: 82px;
        width: calc(100% - 20px);
    }
}


