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

:root {
    --rose-50: #fff8f2;
    --rose-100: #f8ede3;
    --rose-200: #f0dcc8;
    --rose-300: #e2c2a0;
    --rose-500: #d4b07b;
    --rose-600: #bb9563;
    --rose-700: #7d5a37;
    --rose-900: #191211;
    --ink: #3c2a22;
    --white: #ffffff;
    --shadow-soft: 0 24px 60px rgba(35, 22, 18, 0.16);
    --shadow-card: 0 18px 40px rgba(34, 21, 18, 0.16);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --max-width: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 246, 238, 0.98), transparent 34%),
        linear-gradient(180deg, #fffbf6 0%, #f5ebe0 100%);
    line-height: 1.6;
}

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

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

.container {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 32px), var(--max-width));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 22px;
    border: 1px solid rgba(245, 224, 196, 0.9);
    border-radius: 24px;
    background: rgba(255, 248, 241, 0.84);
    backdrop-filter: blur(7px);
    box-shadow: 0 10px 24px rgba(73, 45, 40, 0.1);
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(18, 12, 11, 0.94);
    border-color: rgba(235, 206, 164, 0.18);
    box-shadow: 0 16px 32px rgba(32, 19, 18, 0.24);
}

.logo img,
.navbar > img {
    width: auto;
    height: 86px;
    object-fit: contain;
}

nav {
    flex: 1;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    list-style: none;
}

nav a {
    color: var(--rose-700);
    font-family: 'Poppins', sans-serif;
    font-size: 0.94rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 9px 14px;
    border-radius: 16px;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

nav a:hover,
nav a:focus-visible {
    background: rgba(182, 123, 113, 0.14);
    transform: translateY(-1px);
}

.navbar.scrolled nav a {
    color: var(--white);
}

.navbar.scrolled nav a:hover,
.navbar.scrolled nav a:focus-visible {
    background: rgba(255, 255, 255, 0.14);
}

.background,
.background-h,
.products {
    position: relative;
    overflow: hidden;
}

.hero-section,
.background {
    min-height: 100svh;
}

.hero-section {
    display: grid;
    place-items: center;
    padding: 160px 16px 88px;
}

.background > img,
.background-h > img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    filter: saturate(1.04);
}

.hero-media {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-media::after,
.background::after,
.background-h::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(76, 49, 45, 0.1), rgba(76, 49, 45, 0.42));
    pointer-events: none;
}

.text,
.text-h,
.hero-copy {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    padding: 44px;
    text-align: left;
    color: var(--white);
}

h1,
.text-h h1 {
    font-family: 'Ephesis', cursive;
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--white);
}

.text p,
.text-h p,
.hero-copy p {
    max-width: 640px;
    margin-top: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.button-link,
.featured h3 a,
.cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 18px;
    background: #fff6ec;
    color: var(--rose-700);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border: 1px solid rgba(182, 123, 113, 0.18);
    box-shadow: 0 10px 18px rgba(85, 50, 44, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.button-link:hover,
.featured h3 a:hover,
.cta-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 22px rgba(85, 50, 44, 0.12);
    background: #fffdfa;
}

.button-link.alt {
    background: rgba(255, 247, 244, 0.22);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: 0 10px 18px rgba(40, 24, 22, 0.08);
}

.section-shell,
.featured,
.products,
.about-story,
.about-gallery {
    padding: 88px 0;
}

.featured,
.products {
    background:
        radial-gradient(circle at top, rgba(244, 220, 189, 0.26), transparent 38%),
        linear-gradient(180deg, #2b1b18 0%, #120d0c 100%);
}

.section-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
    color: var(--white);
}

.section-heading h2,
.featured h2,
.products h2 {
    font-family: 'Ephesis', cursive;
    font-size: clamp(3rem, 4vw, 4.5rem);
    line-height: 0.9;
    color: var(--white);
}

.section-heading p,
.featured-intro,
.products-intro {
    max-width: 560px;
    font-size: 1.22rem;
    color: rgba(244, 227, 205, 0.9);
}

.row,
.featured-grid,
.product-grid,
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.col-3,
.product-card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 249, 242, 0.95);
    color: var(--ink);
    border: 1px solid rgba(255, 236, 231, 0.9);
    box-shadow: var(--shadow-card);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.col-3:hover,
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px rgba(65, 37, 33, 0.16);
}

.col-3 a,
.product-card a {
    display: block;
}

.col-3 img,
.product-card img {
    width: 100%;
    aspect-ratio: 4 / 4.3;
    object-fit: cover;
    background: linear-gradient(180deg, #fff8f6 0%, #f3e1dc 100%);
}

.card-copy,
.col-3 .card-copy {
    padding: 24px 24px 28px;
}

.col-3 h4,
.product-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
    color: var(--rose-700);
}

.col-3 p,
.product-card p,
.about-copy p,
.footer p {
    color: #5d4638;
    font-size: 1.2rem;
}

.price-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin-top: 14px;
    border-radius: 999px;
    background: rgba(212, 176, 123, 0.18);
    color: var(--rose-700);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.featured h3 {
    margin-top: 34px;
    text-align: center;
}

.featured h3 a {
    min-width: 220px;
}

.about-story {
    background: transparent;
}

.about-story .container,
.about-gallery .container {
    display: block;
}

.about-copy {
    padding: 18px 0;
}

.about-copy .eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(212, 176, 123, 0.12);
    color: var(--rose-700);
    font-family: 'Poppins', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.9rem, 4vw, 4rem);
    font-weight: 600;
    line-height: 0.95;
    color: var(--rose-700);
}

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

.about-gallery {
    padding-top: 0;
}

.about-grid img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.about-panels {
    display: grid;
    gap: 28px;
}

.about-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 26px;
    align-items: center;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 249, 242, 0.92);
    border: 1px solid rgba(233, 210, 180, 0.8);
    box-shadow: 0 14px 28px rgba(90, 56, 51, 0.08);
}

.about-panel:nth-child(even) {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.about-panel:nth-child(even) .about-photo {
    order: 2;
}

.about-photo img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 22px;
}

.about-panel .about-copy {
    padding: 4px 6px;
}

.footer {
    margin-top: 0;
    padding-top: 72px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 24%),
        linear-gradient(180deg, #1e1412 0%, #0d0908 100%);
}

.footer .container {
    width: min(calc(100% - 32px), var(--max-width));
}

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

.footer-col-1,
.footer-col-2,
.footer-col-3 {
    padding: 28px;
    border-radius: var(--radius-md);
    background: rgba(255, 246, 235, 0.08);
    border: 1px solid rgba(233, 203, 158, 0.18);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.footer h3 {
    margin-bottom: 12px;
    color: #f2d3a4;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-col-2 {
    text-align: center;
}

.footer-col-2 img {
    width: 150px;
    margin: 0 auto 14px;
}

.footer-col-3 {
    text-align: right;
}

.footer p {
    color: rgba(249, 232, 209, 0.9);
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 176, 123, 0.12);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: rgba(212, 176, 123, 0.24);
}

.social-icons img {
    width: 28px;
    height: 28px;
    margin: 0;
}

.bottom-bar {
    margin-top: 28px;
    padding: 18px 16px 26px;
    text-align: center;
    color: rgba(245, 224, 196, 0.78);
}

.bottom-bar p {
    color: inherit;
}

@media (max-width: 960px) {
    .row,
    .featured-grid,
    .product-grid,
    .about-grid,
    .footer .row,
    .about-story .container,
    .about-gallery .container,
    .about-panel {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding-top: 140px;
    }

    .text,
    .text-h,
    .hero-copy {
        padding: 34px 28px;
    }

    .footer-col-3,
    .footer-col-2 {
        text-align: left;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .about-panel:nth-child(even) .about-photo {
        order: 0;
    }
}

@media (max-width: 760px) {
    .navbar {
        top: 12px;
        width: calc(100% - 20px);
        padding: 14px 16px;
        border-radius: 28px;
    }

    .navbar > img {
        display: none;
    }

    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    nav a {
        padding: 8px 12px;
        font-size: 0.92rem;
    }

    .logo img {
        height: 66px;
    }

    .hero-section,
    .section-shell,
    .featured,
    .products,
    .about-story,
    .about-gallery {
        padding: 72px 0;
    }

    .background > img,
    .background-h > img {
        min-height: 500px;
    }

    .featured h3 a,
    .button-link,
    .cta-link {
        width: 100%;
    }
}


