/** @format */

:root {
    --rose-dark: #a9004e;
    --rose-deep: #7a0038;
    --rose: #f9bfc3;
    --rose-50: #fdeef0;
    --rose-25: #fdf6f7;
    --cream: #fbf6f2;
    --cream-2: #f5ede5;
    /* warm premium accents (hero) */
    --espresso: #2e1c12;
    --cocoa: #5b3a22;
    --caramel: #a9722f;
    --caramel-deep: #875625;
    --gold: #c79a3a;
    --hazel-50: #f6ece0;
    --ivory: #fbf5ec;
    --ink: #1a1216;
    --ink-2: #2b2127;
    --muted: #7a6b71;
    --hair: #ebe2e3;
    --hair-2: #e8dcde;
    --white: #ffffff;

    --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
    --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, monospace;

    --r-sm: 10px;
    --r-md: 18px;
    --r-lg: 28px;
    --r-xl: 40px;

    --container: 1320px;
    --shadow-sm:
        0 1px 2px rgba(20, 10, 15, 0.04), 0 4px 14px rgba(20, 10, 15, 0.05);
    --shadow-md:
        0 4px 18px rgba(120, 40, 70, 0.08),
        0 24px 60px -20px rgba(120, 40, 70, 0.12);
    --shadow-lg: 0 30px 80px -30px rgba(120, 40, 70, 0.28);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "ss01", "cv01";
    line-height: 1.55;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ------- typography ------- */
.display {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 0.98;
    color: var(--ink);
}

.display i,
.display em {
    font-style: italic;
    color: var(--rose-dark);
    font-weight: 400;
}

.eyebrow {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 11px;
    font-weight: 600;
    color: var(--rose-dark);
}

.eyebrow.muted {
    color: var(--muted);
}

.lead {
    font-size: 18px;
    color: var(--ink-2);
    max-width: 56ch;
}

.meta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--muted);
    text-transform: uppercase;
}

/* ------- layout ------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

section {
    position: relative;
}

.section-pad {
    padding: 120px 0;
}

.section-pad-sm {
    padding: 80px 0;
}

/* ------- buttons ------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
    white-space: nowrap;
}

.btn .arr {
    transition: transform 0.3s ease;
}

.btn:hover .arr {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--rose-dark);
    color: #fff;
}

.btn-primary:hover {
    background: var(--rose-deep);
    box-shadow: 0 12px 30px -10px rgba(169, 0, 78, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--hair-2);
}

.btn-ghost:hover {
    border-color: var(--ink);
}

.btn-light {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--hair);
}

.btn-light:hover {
    border-color: var(--rose-dark);
    color: var(--rose-dark);
}

.btn-sm {
    height: 40px;
    padding: 0 18px;
    font-size: 13px;
}

/* ------- header ------- */
.header {
    /* fixed so it overlays the hero instead of reserving a strip above it */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    /* transparent over the hero on initial load … */
    background: transparent;
    border-bottom: 1px solid transparent;
    transition:
        background 0.35s ease,
        backdrop-filter 0.35s ease,
        -webkit-backdrop-filter 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

/* … then turns into the glass bar once the user scrolls. */
.header.scrolled {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom-color: rgba(232, 220, 222, 0.6);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--rose-25);
    display: grid;
    place-items: center;
    border: 1px solid var(--hair);
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    font-family: var(--serif);
    font-size: 24px;
    letter-spacing: 0.01em;
    line-height: 1;
}

.brand-name small {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 600;
}

nav.primary {
    display: flex;
    gap: 32px;
    justify-self: center;
}

nav.primary a {
    font-size: 14px;
    color: var(--ink-2);
    position: relative;
    padding: 6px 0;
    font-weight: 500;
}

nav.primary a.active {
    color: var(--rose-dark);
}

nav.primary a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--rose-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

nav.primary a:hover::after,
nav.primary a.active::after {
    transform: scaleX(1);
}

/* ------- dropdowns ------- */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
}

.nav-item > .nav-link .caret {
    width: 14px;
    height: 14px;
    opacity: 0.55;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.nav-item:hover > .nav-link .caret {
    transform: rotate(180deg);
}

/* suppress underline pseudo-element on the wrapper link */
.nav-item > .nav-link::after {
    display: none;
}

/* ------- mega menu ------- */
.mega {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    width: 580px;
    background: #fff;
    border: 1px solid var(--hair);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    z-index: 100;
}

.mega.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #fff;
    border-top: 1px solid var(--hair);
    border-left: 1px solid var(--hair);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mega-item {
    display: flex;
    flex-direction: column;
    gap: 9px;
    border-radius: var(--r-sm);
    padding: 10px;
    text-decoration: none;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.18s ease;
}

.mega-item:hover {
    background: var(--rose-25);
}

.mega-item::after {
    display: none !important;
}

.mega-img {
    aspect-ratio: 4 / 5;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background:
        repeating-linear-gradient(
            135deg,
            rgba(169, 0, 78, 0.05) 0 12px,
            transparent 12px 24px
        ),
        linear-gradient(160deg, var(--rose-50), #fff 60%, var(--cream));
}

.mega-img svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--rose-dark);
    opacity: 0.45;
    padding: 20%;
}

.mega-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mega-item:hover .mega-img img {
    transform: scale(1.07);
}

.mega-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    padding: 0 2px;
}

.mega-item:hover .mega-label {
    color: var(--rose-dark);
}

.header-cta {
    display: flex;
    gap: 10px;
    justify-self: end;
    align-items: center;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 44px;
    padding: 0 18px 0 14px;
    border-radius: 999px;
    border: 1px solid var(--hair-2);
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--ink);
}

.phone-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--rose-50);
    color: var(--rose-dark);
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
}

/* ------- offcanvas ------- */
.offcanvas-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 15, 0.48);
    backdrop-filter: blur(3px);
    z-index: 199;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offcanvas-backdrop.open {
    display: block;
    opacity: 1;
}

.offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 90vw);
    background: var(--white);
    z-index: 200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px rgba(20, 10, 15, 0.18);
}

.offcanvas.open {
    transform: translateX(0);
}

.offcanvas-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--hair);
    flex-shrink: 0;
}

.offcanvas-close {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--hair-2);
    color: var(--ink);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.offcanvas-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.oc-link {
    display: block;
    padding: 14px 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    border-radius: var(--r-sm);
    transition:
        background 0.18s ease,
        color 0.18s ease;
}

.oc-link:hover {
    background: var(--rose-25);
    color: var(--rose-dark);
}

.oc-group {
    border-radius: var(--r-sm);
}

.oc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    background: transparent;
    border-radius: var(--r-sm);
    transition:
        background 0.18s ease,
        color 0.18s ease;
    gap: 8px;
}

.oc-trigger:hover {
    background: var(--rose-25);
    color: var(--rose-dark);
}

.oc-trigger[aria-expanded="true"] {
    background: var(--rose-25);
    color: var(--rose-dark);
    border-radius: var(--r-sm) var(--r-sm) 0 0;
}

.oc-caret {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.oc-trigger[aria-expanded="true"] .oc-caret {
    transform: rotate(180deg);
}

.oc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--rose-25);
    border-radius: 0 0 var(--r-sm) var(--r-sm);
}

.oc-panel.open {
    max-height: 600px;
}

.oc-panel a {
    display: block;
    padding: 11px 20px;
    font-size: 14px;
    color: var(--ink-2);
    cursor: pointer;
    transition: color 0.18s ease;
}

.oc-panel a:last-child {
    padding-bottom: 14px;
}

.oc-panel a:hover {
    color: var(--rose-dark);
}

.offcanvas-foot {
    padding: 16px 20px;
    border-top: 1px solid var(--hair);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

/* ------- HERO ------- */
.hero {
    /* per-cake theme — overridden in JS to match the featured cake.
               Defaults below = Kinder Lešnik (warm caramel). */
    --hero-accent: #a9722f;
    --hero-accent-deep: #875625;
    --hero-glow-1: rgba(199, 154, 58, 0.2);
    --hero-glow-2: rgba(169, 114, 47, 0.12);
    --hero-cake-glow: rgba(199, 154, 58, 0.32);
    /* full-canvas base wash (top -> middle -> bottom) */
    --hero-base-1: #fbf5ec;
    --hero-base-2: #fdfaf4;
    --hero-base-3: #fbf6f2;

    position: relative;
    /* top pad clears the fixed 80px header (header + original 56px gap) */
    padding: 136px 0 100px;
    background:
        radial-gradient(
            900px 620px at 100% -12%,
            var(--hero-glow-1),
            transparent 60%
        ),
        radial-gradient(
            760px 520px at -10% 112%,
            var(--hero-glow-2),
            transparent 60%
        ),
        linear-gradient(
            180deg,
            var(--hero-base-1) 0%,
            var(--hero-base-2) 55%,
            var(--hero-base-3) 100%
        );
    overflow: hidden;
    transition: background 0.6s ease;
}

/* warm premium accent overrides, hero only */
.hero .eyebrow {
    color: var(--hero-accent-deep);
}

.hero .display i {
    color: var(--hero-accent);
}

.hero .trust {
    border-left-color: #e6d8c4;
}

.hero .trust b {
    color: var(--hero-accent-deep);
}

.hero .btn-primary {
    background: var(--espresso);
}

.hero .btn-primary:hover {
    /* match the floating cake name card (themed per cake) */
    background: linear-gradient(
        150deg,
        var(--hero-accent) 0%,
        var(--hero-accent-deep) 80%
    );
    box-shadow: 0 14px 32px -12px rgba(46, 28, 18, 0.5);
}

.hero .btn-ghost {
    border-color: #e1d3c0;
}

.hero .btn-ghost:hover {
    border-color: var(--espresso);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 64px;
    row-gap: 0;
    align-content: center;
    align-items: center;
    min-height: 640px;
}

/* left column: intro (row 1) + actions (row 2); visual spans both on the right */
.hero-intro {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
}

.hero-actions {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
}

.hero-visual {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
}

.hero h1 {
    font-size: clamp(56px, 6.8vw, 104px);
    margin: 0 0 28px;
}

.hero h1 .line {
    display: block;
}

.hero p.lead {
    font-size: 19px;
    margin: 0 0 36px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 540px;
}

.trust {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 16px;
    border-left: 1px solid var(--hair-2);
}

.trust b {
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1;
    color: var(--rose-dark);
    font-weight: 500;
}

.trust span {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

/* hero visual — cake on a footed stand */
.hero-visual {
    position: relative;
    width: 100%;
    min-height: 640px;
    display: grid;
    place-items: center;
}

.cake-stage {
    position: relative;
    width: min(560px, 100%);
    aspect-ratio: 4/5;
    animation: bob 8s ease-in-out infinite;
}

@keyframes bob {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.cake-glow {
    /* position/size overridden per cake in JS (vars set on .hero) */
    position: absolute;
    left: var(--cake-glow-left, 50%);
    top: var(--cake-glow-top, 5%);
    transform: translateX(-50%);
    width: var(--cake-glow-w, 80%);
    height: var(--cake-glow-h, 70%);
    border-radius: 50%;
    background: radial-gradient(
        closest-side,
        var(--hero-cake-glow),
        var(--hero-glow-2) 55%,
        transparent 75%
    );
    filter: blur(14px);
    z-index: 0;
    /* glow/shadow swaps instantly — it changes during the hidden phase of
               the cake transition, so the new cake lands on its correct halo. */
}

.cake-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
    z-index: 2;
    background: transparent;
    filter: drop-shadow(0 34px 34px rgba(70, 44, 24, 0.26));
    transition:
        opacity 0.45s ease,
        transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* swap states: fade + slight slide/scale so cakes glide in instead of cutting */
.cake-img.is-leaving {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
}

.cake-img.is-entering {
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
}

.cake-swap {
    position: absolute;
    bottom: 1%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--hair);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transition:
        opacity 0.3s ease,
        background 0.2s ease,
        color 0.2s ease;
    backdrop-filter: blur(6px);
}

.cake-stage:hover .cake-swap {
    opacity: 1;
}

.cake-swap:hover {
    color: var(--rose-dark);
    border-color: var(--rose-dark);
}

/* prev / next arrows to loop through the featured cakes — kept subtle:
           faint by default, gently surfacing when the cake is hovered. */
.cake-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(120, 90, 60, 0.18);
    color: var(--cocoa);
    display: grid;
    place-items: center;
    opacity: 0.6;
    box-shadow: 0 2px 8px rgba(70, 44, 24, 0.08);
    backdrop-filter: blur(4px);
    transition:
        opacity 0.25s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.15s ease;
}

.cake-nav.prev {
    left: 0;
}

.cake-nav.next {
    right: 0;
}

.cake-stage:hover .cake-nav {
    opacity: 0.92;
}

.cake-nav:hover {
    opacity: 1;
    color: var(--hero-accent-deep);
    border-color: var(--hero-accent);
    background: rgba(255, 255, 255, 0.85);
}

.cake-nav:active {
    transform: translateY(-50%) scale(0.92);
}

.ground-shadow {
    position: absolute;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    width: 52%;
    height: 30px;
    background: radial-gradient(
        ellipse at center,
        rgba(46, 28, 18, 0.2),
        transparent 70%
    );
    filter: blur(9px);
    z-index: 0;
}

/* Floating cake card — title + sastojci in two lines, themed per cake (top-right) */
.cake-name-card {
    position: absolute;
    top: 8%;
    right: -4%;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(
        150deg,
        var(--hero-accent) 0%,
        var(--hero-accent-deep) 80%
    );
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--r-md);
    padding: 16px 16px 16px 20px;
    box-shadow: var(--shadow-lg);
    max-width: 300px;
    z-index: 3;
    animation: floatC 7s ease-in-out infinite;
    transition:
        box-shadow 0.3s ease,
        background 0.6s ease;
}

.cake-name-card:hover {
    box-shadow: 0 38px 90px -32px rgba(70, 44, 24, 0.55);
}

.cake-name-card .cc-main {
    min-width: 0;
}

.cake-name-card .name {
    font-family: var(--serif);
    font-size: 25px;
    line-height: 1.05;
    font-weight: 500;
    color: #fff;
}

.cake-name-card .name i {
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

.cake-name-card .ingredients {
    margin-top: 7px;
    font-size: 12.5px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cake-name-card .go {
    flex: 0 0 auto;
    align-self: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #fff;
    color: var(--hero-accent-deep);
    display: grid;
    place-items: center;
    transition:
        transform 0.35s ease,
        background 0.3s ease;
}

.cake-name-card:hover .go {
    transform: rotate(-45deg);
}

@keyframes floatC {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-6px, -4px);
    }
}

@keyframes floatD {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(6px, -6px);
    }
}

/* photo placeholder util */
.ph {
    position: relative;
    background:
        repeating-linear-gradient(
            135deg,
            rgba(169, 0, 78, 0.06) 0 14px,
            rgba(169, 0, 78, 0) 14px 28px
        ),
        linear-gradient(160deg, var(--rose-50), #fff 60%, var(--cream));
    overflow: hidden;
}

.ph::after {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    bottom: 14px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: rgba(122, 0, 56, 0.75);
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

/* SVG glyphs inside placeholders simulating cake silhouettes */
.ph .glyph {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--rose-dark);
    opacity: 0.55;
}

/* marquee strip */
.marquee {
    background: var(--ink);
    color: #fff;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
    display: flex;
    gap: 56px;
    padding: 22px 0;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
    width: max-content;
}

.marquee span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    gap: 56px;
    color: rgba(255, 255, 255, 0.92);
}

.marquee .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rose);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* section heading */
.section-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 24px;
    margin-bottom: 56px;
}

.section-head h2 {
    font-size: clamp(40px, 4.6vw, 68px);
    margin: 16px 0 0;
    max-width: 16ch;
}

.section-head .right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.section-head .right p {
    color: var(--muted);
    max-width: 38ch;
    font-size: 15px;
    margin: 0;
}

/* ------- categories ------- */
.cats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* wide, shorter cards (second row) */
.cat.cat-wide {
    grid-column: span 2;
    aspect-ratio: 16/7;
}

.cat {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--cream);
    aspect-ratio: 3/4;
    transition: transform 0.4s ease;
}

.cat:hover {
    transform: translateY(-6px);
}

.cat .cat-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.65s ease;
}

.cat:hover .cat-img {
    transform: scale(1.06);
}

/* full-card gradient overlay for text readability (same as card-options) */
.cat::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 12, 16, 0.84),
        rgba(20, 12, 16, 0.04) 62%
    );
    z-index: 1;
    pointer-events: none;
}

.cat .content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px;
    color: #fff;
    z-index: 2;
}

.cat h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.cat p {
    font-size: 13px;
    opacity: 0.85;
    margin: 0 0 14px;
}

.cat .more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: gap 0.3s ease;
}

.cat:hover .more {
    gap: 13px;
}

.cat .tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    color: var(--rose-dark);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
}

/* ------- why Šušić (primary-color panel) ------- */
.whyp {
    background: linear-gradient(
        155deg,
        var(--rose-dark) 0%,
        var(--rose-deep) 92%
    );
    border-radius: var(--r-xl);
    padding: 30px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 56px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.whyp::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(
        closest-side,
        rgba(249, 191, 195, 0.22),
        transparent 70%
    );
    top: -180px;
    right: -120px;
    pointer-events: none;
}

.whyp .item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

.whyp .item:nth-child(1),
.whyp .item:nth-child(2) {
    border-top: none;
}

.whyp .ic {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--rose);
    display: grid;
    place-items: center;
}

.whyp h4 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    margin: 0 0 6px;
    color: #fff;
}

.whyp p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* ------- naši ukusi (light cards, image on top) ------- */
.ukusi {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ukus-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ukus-card:hover {
    /* transform: translateY(-6px); */
    box-shadow: var(--shadow-lg);
}

.ukus-card .img {
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.ukus-card:hover .img {
    transform: scale(1.05);
}

.ukus-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.ukus-body .k {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose-dark);
}

.ukus-body h3 {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 500;
    margin: 0;
}

.ukus-body p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    flex: 1;
}

.ukus-more {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--rose-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.ukus-card:hover .ukus-more {
    gap: 13px;
}

.ukusi-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* ------- configurator ------- */
.config {
    background: var(--cream);
    border-radius: var(--r-xl);
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.config::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(closest-side, var(--rose) 0%, transparent 75%);
    top: -120px;
    right: -80px;
    opacity: 0.5;
}

.config h2 {
    font-size: clamp(40px, 4.2vw, 56px);
    margin: 16px 0 20px;
}

.config p {
    color: var(--ink-2);
    font-size: 16px;
    margin: 0 0 32px;
    max-width: 42ch;
}

.config-ui {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.config-ui .ui-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hair);
    margin-bottom: 22px;
}

.config-ui .ui-head .title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 20px;
}

.config-ui .ui-head .step {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
}

.ui-field {
    margin-bottom: 18px;
}

.ui-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.ui-label .hint {
    color: var(--rose-dark);
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 500;
}

.ui-slider {
    position: relative;
    height: 6px;
    background: var(--rose-25);
    border-radius: 999px;
}

.ui-slider .fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 42%;
    background: var(--rose-dark);
    border-radius: 999px;
}

.ui-slider .knob {
    position: absolute;
    top: 50%;
    left: 42%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #fff;
    border: 2px solid var(--rose-dark);
    box-shadow: 0 4px 10px rgba(169, 0, 78, 0.22);
}

.ui-slider .vals {
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    margin-top: 8px;
}

.ui-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ui-pill {
    padding: 8px 14px;
    border: 1px solid var(--hair-2);
    border-radius: 999px;
    font-size: 13px;
    color: var(--ink-2);
    background: #fff;
}

.ui-pill.active {
    background: var(--rose-dark);
    color: #fff;
    border-color: var(--rose-dark);
}

.ui-upload {
    border: 1.5px dashed var(--hair-2);
    border-radius: var(--r-md);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--rose-25);
}

.ui-upload .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--rose-dark);
    border: 1px solid var(--hair);
}

.ui-upload .t {
    font-size: 13px;
}

.ui-upload .t b {
    display: block;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 2px;
    font-weight: 600;
}

.ui-upload .t span {
    color: var(--muted);
    font-size: 12px;
}

.ui-summary {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--hair);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ui-summary .price {
    font-family: var(--serif);
    font-size: 26px;
}

.ui-summary .price small {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--muted);
    display: block;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ------- why us ------- */
.why {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--hair);
    border-bottom: 1px solid var(--hair);
}

.why .item {
    padding: 40px 32px;
    border-right: 1px solid var(--hair);
    position: relative;
}

.why .item:last-child {
    border-right: none;
}

.why .num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--rose-dark);
    letter-spacing: 0.1em;
}

.why .ic {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--rose-25);
    color: var(--rose-dark);
    display: grid;
    place-items: center;
    margin: 16px 0 22px;
}

.why h4 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    margin: 0 0 10px;
}

.why p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
    max-width: 32ch;
}

/* ------- gallery ------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 140px;
    gap: 16px;
}

.gx {
    border-radius: var(--r-md);
    overflow: hidden;
    position: relative;
}

.gx .g-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.gx:hover .g-img {
    transform: scale(1.06);
}

.g1 {
    grid-column: span 4;
    grid-row: span 3;
}

.g2 {
    grid-column: span 4;
    grid-row: span 2;
}

.g3 {
    grid-column: span 4;
    grid-row: span 2;
}

.g4 {
    grid-column: span 3;
    grid-row: span 2;
}

.g5 {
    grid-column: span 5;
    grid-row: span 2;
}

.g6 {
    grid-column: span 4;
    grid-row: span 2;
}

.g7 {
    grid-column: span 4;
    grid-row: span 2;
}

.g8 {
    grid-column: span 4;
    grid-row: span 2;
}

/* ------- occasions ------- */
.occasions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.occasion {
    padding: 28px 26px;
    border-radius: var(--r-lg);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    box-shadow: var(--shadow-md);
}

.occasion .occ-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.65s ease;
    z-index: 0;
}

/* readability gradient */
.occasion::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 12, 16, 0.85),
        rgba(20, 12, 16, 0.12) 70%
    );
    z-index: 1;
}

/* rose tint on hover */
.occasion::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--rose-dark);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.occasion > :not(.occ-img) {
    position: relative;
    z-index: 2;
}

.occasion:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.occasion:hover .occ-img {
    transform: scale(1.06);
}

.occasion:hover::after {
    opacity: 0.55;
}

.occasion:hover .arrow-circle {
    background: #fff;
    color: var(--rose-dark);
}

.occasion .occ-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    align-self: flex-start;
}

.occasion h4 {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 500;
    margin: 24px 0 12px;
    line-height: 1;
}

.occasion p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
    max-width: 26ch;
}

.occasion .bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.arrow-circle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

/* ------- social proof / reviews ------- */
.proof {
    background:
        radial-gradient(
            1200px 600px at 85% -10%,
            var(--rose-25),
            transparent 60%
        ),
        linear-gradient(180deg, var(--white), var(--cream));
}

/* aggregate rating summary (right of section head) */
.proof-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 8px;
}

.proof-summary .ps-platforms {
    display: flex;
    align-items: center;
    gap: 22px;
}

.ps-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.ps-block .ps-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ps-block .score {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1;
    color: var(--ink);
    font-weight: 500;
}

.ps-block .count {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

.ps-divider {
    width: 1px;
    height: 44px;
    background: var(--hair-2);
}

.stars {
    display: inline-flex;
    gap: 2px;
    color: var(--gold);
}

.stars svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* masonry grid of review cards */
.proof-grid {
    columns: 3;
    column-gap: 16px;
}

.proof-card {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    background: #fff;
    border: 1px solid var(--hair);
    border-radius: var(--r-md);
    padding: 22px 22px 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--hair-2);
}

.pc-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 17px;
    color: #fff;
    background: var(--c, var(--rose-dark));
    flex-shrink: 0;
    letter-spacing: 0.01em;
}

.pc-id {
    flex: 1;
    min-width: 0;
}

.pc-name {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
    line-height: 1.2;
}

.pc-name .verified {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: #1d9bf0;
}

.pc-meta {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 3px;
}

.pc-src {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.pc-stars {
    margin: 16px 0 10px;
}

.pc-stars svg {
    width: 16px;
    height: 16px;
}

.pc-text {
    font-size: 14.5px;
    line-height: 1.62;
    color: var(--ink-2);
    margin: 0;
}

.pc-text b {
    color: var(--ink);
    font-weight: 600;
}

.pc-likes {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--muted);
}

.pc-likes span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pc-likes svg {
    width: 14px;
    height: 14px;
}

.pc-likes .heart {
    color: var(--rose-dark);
    fill: var(--rose-dark);
}

/* featured pull-quote card */
.proof-card.featured {
    background: linear-gradient(155deg, var(--rose-50), #fff 75%);
    border-color: var(--rose);
}

.proof-card.featured .quote-mark {
    font-family: var(--serif);
    font-size: 64px;
    line-height: 0.6;
    color: var(--rose);
    display: block;
    margin: 4px 0 6px;
}

.proof-card.featured .pc-text {
    font-family: var(--serif);
    font-size: 23px;
    line-height: 1.34;
    color: var(--ink);
    letter-spacing: -0.01em;
}

/* footer row */
.proof-foot {
    margin-top: 44px;
    padding-top: 30px;
    border-top: 1px solid var(--hair);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}

.proof-foot .pf-text {
    font-size: 15px;
    color: var(--ink-2);
    margin: 0;
}

.proof-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    border: 1px solid var(--ink);
    padding: 12px 22px;
    border-radius: 999px;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.proof-link:hover {
    background: var(--ink);
    color: #fff;
}

.proof-link svg {
    width: 16px;
    height: 16px;
}

/* ------- locations ------- */
.locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.location {
    background: #fff;
    border: 1px solid var(--hair);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.location:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.location .map {
    height: 200px;
    position: relative;
    background: linear-gradient(135deg, var(--rose-25), var(--cream));
    overflow: hidden;
}

.location .map svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.location .map .pin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -100%);
    width: 32px;
    height: 32px;
    background: var(--rose-dark);
    border-radius: 999px 999px 999px 2px;
    rotate: -45deg;
    box-shadow: 0 6px 20px rgba(169, 0, 78, 0.4);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 12px;
}

.location .map .pin span {
    rotate: 45deg;
}

.location .map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.15);
}

.location .body {
    padding: 24px 26px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.location .name {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 4px;
}

.location .addr {
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 18px;
}

.location .hours {
    border-top: 1px solid var(--hair);
    padding-top: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 18px;
    margin-top: auto;
}

.location .hours .row {
    display: flex;
    justify-content: space-between;
}

.location .hours .row span:last-child {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 12px;
}

.loc-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #2db567;
    font-weight: 600;
}

.loc-status .d {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #2db567;
    transition: background 0.3s ease;
}

.loc-status.closed {
    color: #d92b2b !important;
}

.loc-status.closed .d {
    background: #d92b2b !important;
}

/* ------- final CTA ------- */
.final-cta {
    background: var(--rose-dark);
    color: #fff;
    border-radius: var(--r-xl);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

.final-cta::before,
.final-cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.final-cta::before {
    width: 520px;
    height: 520px;
    background: radial-gradient(
        closest-side,
        rgba(249, 191, 195, 0.35),
        transparent 70%
    );
    top: -200px;
    right: -120px;
}

.final-cta::after {
    width: 360px;
    height: 360px;
    background: radial-gradient(
        closest-side,
        rgba(249, 191, 195, 0.2),
        transparent 70%
    );
    bottom: -180px;
    left: -60px;
}

.final-cta .inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.final-cta h2 {
    font-size: clamp(48px, 5.5vw, 84px);
    margin: 16px 0 24px;
    color: #fff;
}

.final-cta h2 i {
    color: var(--rose);
}

.final-cta p {
    font-size: 17px;
    opacity: 0.9;
    margin: 0 0 32px;
    max-width: 48ch;
}

.final-cta .cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.final-cta .btn-primary {
    background: #fff;
    color: var(--rose-dark);
}

.final-cta .btn-primary:hover {
    background: var(--cream);
}

.final-cta .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.final-cta .btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.cta-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--r-lg);
    padding: 28px;
    backdrop-filter: blur(8px);
}

.cta-card .row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.cta-card .row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cta-card .row span:last-child {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--rose);
}

.cta-card .row:first-child {
    padding-top: 0;
}

.cta-card .head {
    font-family: var(--serif);
    font-size: 22px;
    margin-bottom: 8px;
}

/* ------- footer ------- */
footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer h5 {
    color: #fff;
    font-family: var(--sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    margin: 0 0 18px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer ul a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

footer ul a:hover {
    color: var(--rose);
}

footer .brand-name {
    color: #fff;
    font-size: 32px;
}

footer .brand-name small {
    color: rgba(255, 255, 255, 0.5);
}

footer p.tag {
    max-width: 32ch;
    font-size: 14px;
    margin: 18px 0 24px;
}

.footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* placeholders with photo glyphs */
.cake-svg {
    width: 60%;
    height: 60%;
}

@media (max-width: 1024px) {
    .hero-grid,
    .config,
    .final-cta .inner {
        grid-template-columns: 1fr;
    }

    /* stack hero in DOM order: intro -> cake -> actions */
    .hero-grid {
        grid-template-rows: none;
        row-gap: 40px;
    }

    .hero-intro,
    .hero-visual,
    .hero-actions {
        grid-column: auto;
        grid-row: auto;
        align-self: auto;
    }

    .cats,
    .occasions,
    .ukusi {
        grid-template-columns: repeat(2, 1fr);
    }

    .why {
        grid-template-columns: repeat(2, 1fr);
    }

    .why .item {
        border-right: none;
        border-bottom: 1px solid var(--hair);
    }

    .locations {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        columns: 2;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .container {
        padding: 0 22px;
    }

    .section-pad {
        padding: 80px 0;
    }

    nav.primary,
    .header-cta .phone-btn {
        display: none;
    }

    .brand-name small {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .header-cta {
        justify-self: end;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        border: 1px solid #00000012;
        color: var(--ink);
    }

    .hero {
        /* +80px to clear the fixed header */
        padding: 90px 0 72px;
    }

    .hero-grid {
        gap: 24px;
        min-height: 0;
    }

    /* shrink the headline + lead so the cake image is visible without scrolling */
    .hero h1 {
        font-size: clamp(34px, 9vw, 44px);
        margin: 0 0 16px;
    }

    .hero h1[style] {
        margin-top: 10px !important;
    }

    /* let the headline wrap naturally instead of forcing 3 lines */
    .hero h1 .line {
        display: inline;
    }

    .hero h1 .line:not(:last-child)::after {
        content: " ";
    }

    .hero p.lead {
        font-size: 14px;
        margin: 0 0 24px;
    }

    .hero-visual {
        min-height: 360px;
        order: 0;
    }

    /* full-width stacked CTAs */
    .hero-actions {
        margin-top: 4px;
    }

    .hero-cta {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        height: 56px;
    }

    .cake-name-card {
        right: 0;
        max-width: 260px;
        padding: 14px 14px 14px 16px;
        gap: 12px;
        z-index: -1;
        top: 0;
    }

    .cake-name-card .name {
        font-size: 21px;
    }

    .cake-name-card .ingredients {
        font-size: 12px;
    }

    .section-head {
        grid-template-columns: 1fr;
    }

    .cats,
    .occasions {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        columns: 1;
    }

    .proof-summary {
        align-items: flex-start;
        text-align: left;
    }

    .proof-summary .ps-platforms {
        gap: 16px;
    }

    .ps-block {
        align-items: flex-start;
    }

    .proof-card.featured .pc-text {
        font-size: 20px;
    }

    .ukusi {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat.cat-wide {
        grid-column: auto;
        aspect-ratio: 4/3;
    }

    .why {
        grid-template-columns: 1fr;
    }

    .config {
        padding: 40px 26px;
        gap: 40px;
    }

    .whyp {
        grid-template-columns: 1fr;
        padding: 32px 26px;
    }

    .whyp .item:nth-child(2) {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .final-cta {
        padding: 60px 28px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .section-head .right {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

/* ============================================================
   SUBPAGE SHARED STYLES (komadni / sitni / galerije / o-nama / kontakt)
   ============================================================ */
.page-hero {
    position: relative;
    padding: 150px 0 64px;
    background:
        radial-gradient(
            900px 520px at 100% -20%,
            var(--rose-50),
            transparent 60%
        ),
        radial-gradient(700px 480px at -10% 120%, #fdeef0, transparent 60%),
        linear-gradient(180deg, var(--rose-25) 0%, #fff 70%);
    overflow: hidden;
}

.page-hero .ph-inner {
    max-width: 760px;
}

.page-hero h1 {
    font-size: clamp(44px, 6vw, 84px);
    margin: 18px 0 20px;
}

.page-hero .lead {
    font-size: 18px;
    max-width: 60ch;
}

.ph-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.ph-stats .s b {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1;
    color: var(--rose-dark);
    font-weight: 500;
    display: block;
}

.ph-stats .s span {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.02em;
}

/* breadcrumb */
.crumb {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.crumb a:hover {
    color: var(--rose-dark);
}

/* filter bar + product cards (listing pages) */
.flavors-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-pill {
    padding: 10px 18px;
    border: 1px solid var(--hair-2);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    background: #fff;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.filter-pill:hover {
    border-color: var(--rose-dark);
    color: var(--rose-dark);
}

.filter-pill.active {
    background: var(--rose-dark);
    color: #fff;
    border-color: var(--rose-dark);
}

.ukus-card {
    position: relative;
}

.ukus-card .cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    color: var(--rose-dark);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
}

.ukus-card.is-hidden {
    display: none;
}

.flavors-empty {
    display: none;
    padding: 60px 0;
    text-align: center;
    color: var(--muted);
}

/* about page */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-grid .about-media {
    aspect-ratio: 4/5;
    border-radius: var(--r-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}

.about-grid h2 {
    font-size: clamp(32px, 3.4vw, 50px);
    margin: 10px 0 18px;
}

.about-grid p {
    color: var(--ink-2);
    font-size: 16px;
    margin: 0 0 16px;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.workshop-grid figure {
    margin: 0;
    aspect-ratio: 3/4;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.workshop-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    background: #fff;
    border: 1px solid var(--hair);
    border-radius: var(--r-lg);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
}

.value-card .ic {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--rose-25);
    color: var(--rose-dark);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.value-card h4 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 8px;
}

.value-card p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

/* contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
    gap: 56px;
    align-items: start;
}

.contact-info .ci-item {
    display: flex;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--hair);
}

.contact-info .ci-item:first-child {
    padding-top: 0;
}

.contact-info .ic {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--rose-25);
    color: var(--rose-dark);
    display: grid;
    place-items: center;
}

.contact-info .ci-item .t b {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info .ci-item .t span {
    font-size: 16px;
    color: var(--ink);
}

.contact-form {
    background: #fff;
    border: 1px solid var(--hair);
    border-radius: var(--r-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.contact-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    margin-bottom: 16px;
}

.field label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    padding: 13px 15px;
    border: 1px solid var(--hair-2);
    border-radius: var(--r-sm);
    background: var(--rose-25);
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--rose-dark);
    background: #fff;
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.map-wrap {
    margin-top: 24px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--hair);
    height: 320px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values {
        grid-template-columns: repeat(3, 1fr);
    }

    .workshop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .page-hero {
        padding: 120px 0 48px;
    }

    .ph-stats {
        gap: 28px;
    }

    .values {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
    }

    .gallery .gx {
        grid-column: span 1 !important;
        grid-row: span 2 !important;
    }

    .contact-form {
        padding: 24px;
    }

    .contact-form .row {
        grid-template-columns: 1fr;
    }
}
