:root {
    --wine: #6f0f0c;
    --wine-dark: #4f0908;
    --cream: #fbf7f0;
    --paper: #fffdf9;
    --sand: #c8a66a;
    --ink: #2c211d;
    --muted: #73645d;
    --line: #e9dfd4;
    --soft: #f5eee5;
    --shadow: 0 18px 45px rgba(72, 39, 24, .10);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.announcement {
    min-height: 30px;
    display: grid;
    place-items: center;
    padding: 5px 20px;
    color: #fff;
    background: linear-gradient(90deg, var(--wine-dark), #7e1712, var(--wine-dark));
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.site-shell {
    width: min(1460px, calc(100% - 40px));
    margin-inline: auto;
}

.home-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 253, 249, .96);
    border-bottom: 1px solid rgba(111, 15, 12, .07);
    backdrop-filter: blur(12px);
}

.header-row {
    min-height: 92px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.home-logo {
    justify-self: start;
    color: var(--wine-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 43px);
    font-weight: 600;
    letter-spacing: .30em;
    line-height: 1;
    text-transform: uppercase;
}
.home-logo span { display: block; margin-top: 10px; font: 700 10px/1 Arial, sans-serif; letter-spacing: .15em; text-align: center; }

.primary-nav { justify-self: center; }
.primary-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 48px);
    margin: 0;
    padding: 0;
    list-style: none;
}
.primary-nav a {
    position: relative;
    display: block;
    padding: 34px 0 29px;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.primary-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 23px;
    height: 1px;
    background: var(--wine);
    transition: .25s ease;
}
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { left: 0; right: 0; }

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 9px;
}
.icon-link,
.icon-button {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--wine-dark);
    background: transparent;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.icon-link:hover,
.icon-button:hover { background: var(--soft); transform: translateY(-1px); }
.icon-link svg,
.icon-button svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.cart-badge {
    position: absolute;
    right: -1px;
    top: 1px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #fff;
    background: var(--wine);
    font-size: 10px;
    font-weight: 800;
}
.menu-button { display: none; }

.search-panel {
    max-height: 0;
    overflow: hidden;
    background: var(--paper);
    transition: max-height .25s ease;
}
.search-panel.open { max-height: 90px; border-top: 1px solid var(--line); }
.search-form {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.search-form input {
    flex: 1;
    min-width: 0;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    outline: none;
}
.search-form input:focus { border-color: var(--wine); box-shadow: 0 0 0 3px rgba(111, 15, 12, .08); }

.btn {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 24px;
    border: 1px solid var(--wine);
    border-radius: 3px;
    color: #fff;
    background: var(--wine);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(111, 15, 12, .16); background: var(--wine-dark); }
.btn-outline { color: var(--wine); background: transparent; }
.btn-outline:hover { color: #fff; background: var(--wine); }
.btn-light { color: var(--wine); border-color: #fff; background: #fff; }

.hero {
    display: grid;
    grid-template-columns: minmax(360px, .92fr) minmax(540px, 1.08fr);
    min-height: 530px;
    background: var(--cream);
}
.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(55px, 7vw, 100px) clamp(40px, 7vw, 108px);
}
.eyebrow {
    margin: 0 0 16px;
    color: #9b7e4b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .20em;
    text-transform: uppercase;
}
.hero h1 {
    max-width: 690px;
    margin: 0;
    color: var(--wine-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5.8vw, 82px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.01;
}
.hero-rule { width: 74px; height: 2px; margin: 28px 0 20px; background: var(--sand); }
.hero-copy > p:not(.eyebrow) { max-width: 490px; margin: 0 0 26px; color: var(--muted); font-size: 17px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-media { min-height: 530px; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.benefits {
    border-bottom: 1px solid var(--line);
    background: #fffaf4;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.benefit {
    min-height: 120px;
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 18px;
    padding: 26px clamp(18px, 2vw, 34px);
    border-right: 1px solid var(--line);
}
.benefit:last-child { border-right: 0; }
.benefit-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--wine);
    background: var(--soft);
}
.benefit-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.45; }
.benefit h3 { margin: 0 0 4px; color: var(--wine-dark); font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }
.benefit p { margin: 0; color: var(--muted); font-size: 13px; }

.section { padding: clamp(68px, 8vw, 105px) 0; }
.section-soft { background: var(--cream); }
.section-heading { max-width: 720px; margin: 0 auto 34px; text-align: center; }
.section-heading::before { content: ""; display: block; width: 62px; height: 2px; margin: 0 auto 15px; background: var(--sand); }
.section-heading h2 {
    margin: 0;
    color: var(--wine-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.section-heading p { margin: 7px 0 0; color: var(--muted); }

.occasion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.collection-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(69, 41, 28, .04);
    transition: transform .25s ease, box-shadow .25s ease;
}
.collection-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.collection-card .media { aspect-ratio: 1.32 / 1; overflow: hidden; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.collection-card:hover img { transform: scale(1.045); }
.collection-card .card-copy { padding: 18px 14px 20px; text-align: center; }
.collection-card h3 { margin: 0; color: var(--wine-dark); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
.collection-card span { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; color: var(--wine); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.home-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.home-grid .collection-card .media { aspect-ratio: 1.45 / 1; }

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

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.why-item { padding: 4px 12px; text-align: center; }
.why-item svg { width: 42px; height: 42px; margin: 0 auto 14px; fill: none; stroke: var(--wine); stroke-width: 1.35; }
.why-item h3 { margin: 0 0 5px; color: var(--wine-dark); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.why-item p { margin: 0; color: var(--muted); font-size: 12px; }

.story-grid {
    display: grid;
    grid-template-columns: .95fr .9fr 1.15fr;
    gap: 30px;
    align-items: stretch;
}
.story-copy,
.instagram-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(10px, 2vw, 28px);
}
.kicker { margin: 0 0 10px; color: var(--wine); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.story-copy h2,
.instagram-panel h2 { margin: 0 0 18px; color: var(--wine-dark); font-family: Georgia, "Times New Roman", serif; font-size: 29px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }
.story-copy p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.story-image { min-height: 390px; overflow: hidden; border-radius: 8px; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.instagram-panel { text-align: center; }
.instagram-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.instagram-grid a { overflow: hidden; border-radius: 6px; aspect-ratio: 1; }
.instagram-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.instagram-grid a:hover img { transform: scale(1.07); }
.instagram-panel .btn { align-self: center; margin-top: 18px; }

.whatsapp-cta {
    margin-top: 0;
    color: #fff;
    background: linear-gradient(100deg, #5a0908, #821714 58%, #600b09);
}
.whatsapp-inner {
    min-height: 160px;
    display: grid;
    grid-template-columns: 74px 1fr auto;
    align-items: center;
    gap: 24px;
}
.whatsapp-mark { width: 68px; height: 68px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; }
.whatsapp-mark svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.65; }
.whatsapp-copy h2 { margin: 0 0 5px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(24px, 3vw, 34px); font-weight: 500; }
.whatsapp-copy p { margin: 0; color: rgba(255,255,255,.82); }

.site-footer-new { color: #fff; background: #4c0807; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
    gap: 44px;
    padding: 52px 0 42px;
}
.footer-brand { font-family: Georgia, "Times New Roman", serif; font-size: 27px; letter-spacing: .28em; text-transform: uppercase; }
.footer-phone { margin: 9px 0 18px; font-weight: 700; }
.footer-copy { max-width: 250px; margin: 0; color: rgba(255,255,255,.72); font-size: 13px; }
.footer-column h3 { margin: 0 0 13px; font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.footer-column ul { margin: 0; padding: 0; list-style: none; }
.footer-column li + li { margin-top: 7px; }
.footer-column a,
.footer-column p { margin: 0; color: rgba(255,255,255,.72); font-size: 12px; }
.footer-column a:hover { color: #fff; }
.footer-bottom {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.62);
    font-size: 11px;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--wine);
    box-shadow: 0 10px 25px rgba(69, 10, 8, .28);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 1180px) {
    .header-row { grid-template-columns: auto 1fr auto; }
    .primary-nav ul { gap: 22px; }
    .hero { grid-template-columns: .9fr 1.1fr; }
    .hero-copy { padding-inline: 48px; }
    .occasion-grid { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
    .story-grid { grid-template-columns: 1fr 1fr; }
    .instagram-panel { grid-column: 1 / -1; }
    .instagram-grid { grid-template-columns: repeat(8, 1fr); }
}

@media (max-width: 940px) {
    .site-shell { width: min(100% - 28px, 1460px); }
    .header-row { min-height: 78px; }
    .home-logo { font-size: 27px; }
    .primary-nav {
        position: fixed;
        inset: 108px 0 auto 0;
        max-height: 0;
        overflow: hidden;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        transition: max-height .28s ease;
    }
    .primary-nav.open { max-height: 440px; }
    .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 15px 28px 25px; }
    .primary-nav a { padding: 13px 4px; }
    .primary-nav a::after { bottom: 8px; }
    .menu-button { display: grid; }
    .hero { grid-template-columns: 1fr; }
    .hero-copy { order: 2; padding: 54px 34px 62px; }
    .hero-media { min-height: 430px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit:nth-child(2) { border-right: 0; }
    .benefit:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .occasion-grid { grid-template-columns: repeat(3, 1fr); }
    .home-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 660px) {
    .announcement { font-size: 10px; letter-spacing: .13em; }
    .site-shell { width: min(100% - 22px, 1460px); }
    .home-logo { font-size: 22px; letter-spacing: .22em; }
    .home-logo span { display: none; }
    .header-actions { gap: 1px; }
    .icon-link,
    .icon-button { width: 38px; height: 38px; }
    .account-link { display: none; }
    .primary-nav { inset: 101px 0 auto; }
    .hero-media { min-height: 315px; }
    .hero-copy { padding: 44px 23px 50px; }
    .hero h1 { font-size: clamp(43px, 13vw, 62px); }
    .hero-copy > p:not(.eyebrow) { font-size: 15px; }
    .hero-buttons { width: 100%; }
    .hero-buttons .btn { flex: 1; min-width: 170px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit,
    .benefit:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
    .benefit:last-child { border-bottom: 0; }
    .section { padding: 60px 0; }
    .section-heading h2 { font-size: 30px; }
    .occasion-grid { grid-template-columns: repeat(2, 1fr); gap: 11px; }
    .collection-card .card-copy { padding-inline: 7px; }
    .collection-card h3 { font-size: 11px; }
    .home-grid { gap: 11px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .story-grid { grid-template-columns: 1fr; gap: 18px; }
    .story-copy,
    .instagram-panel { padding: 10px 3px 25px; }
    .story-image { min-height: 340px; }
    .instagram-grid { grid-template-columns: repeat(4, 1fr); }
    .whatsapp-inner { grid-template-columns: 54px 1fr; gap: 14px; padding: 28px 0; }
    .whatsapp-mark { width: 52px; height: 52px; }
    .whatsapp-copy h2 { font-size: 24px; }
    .whatsapp-inner .btn { grid-column: 1 / -1; width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; justify-content: center; padding: 14px 0; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}


/* =========================================================
   CANDELZE OFFICIAL IMAGE LOGO
========================================================= */
.home-logo {
    display: block;
    width: clamp(175px, 17vw, 235px);
    line-height: 0;
}
.home-logo img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 940px) {
    .home-logo { width: 185px; }
}
@media (max-width: 660px) {
    .home-logo { width: 150px; }
}
