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

:root {
    --restaurant-bg: #120d0a;
    --restaurant-bg-top: #1a130f;
    --restaurant-surface: rgba(34, 24, 18, 0.78);
    --restaurant-surface-strong: rgba(24, 17, 13, 0.92);
    --restaurant-accent: #d49b4a;
    --restaurant-accent-soft: #f2cf9f;
    --restaurant-text: #f8ecd9;
    --restaurant-muted: #c8ae8d;
    --restaurant-border: rgba(242, 207, 159, 0.14);

    --cevap-bg: #160f0a;
    --cevap-bg-top: #23160d;
    --cevap-surface: rgba(41, 26, 15, 0.8);
    --cevap-surface-strong: rgba(28, 18, 11, 0.94);
    --cevap-accent: #f29a38;
    --cevap-accent-soft: #ffd4a4;
    --cevap-text: #fff1df;
    --cevap-muted: #efc08a;
    --cevap-border: rgba(242, 154, 56, 0.18);

    --font-display: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;

    --container: min(1180px, calc(100% - 32px));
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-pill: 999px;
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.28);
    --transition-smooth: 600ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 220ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    --page-bg: var(--restaurant-bg);
    --page-bg-top: var(--restaurant-bg-top);
    --page-surface: var(--restaurant-surface);
    --page-surface-strong: var(--restaurant-surface-strong);
    --page-accent: var(--restaurant-accent);
    --page-accent-soft: var(--restaurant-accent-soft);
    --page-text: var(--restaurant-text);
    --page-muted: var(--restaurant-muted);
    --page-border: var(--restaurant-border);

    margin: 0;
    min-height: 100vh;
    color: var(--page-text);
    font-family: var(--font-body);
    background-color: var(--page-bg);
    overflow-x: hidden;
    transition: color var(--transition-smooth), background-color var(--transition-smooth);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(circle at 12% 18%, rgba(212, 155, 74, 0.18), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.06), transparent 20%),
        linear-gradient(180deg, var(--page-bg-top) 0%, var(--page-bg) 55%, #0b0908 100%);
    transition: background var(--transition-smooth);
}

body.theme-cevabdzinica {
    --page-bg: var(--cevap-bg);
    --page-bg-top: var(--cevap-bg-top);
    --page-surface: var(--cevap-surface);
    --page-surface-strong: var(--cevap-surface-strong);
    --page-accent: var(--cevap-accent);
    --page-accent-soft: var(--cevap-accent-soft);
    --page-text: var(--cevap-text);
    --page-muted: var(--cevap-muted);
    --page-border: var(--cevap-border);
}

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

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

button {
    font: inherit;
    color: inherit;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
}

p {
    margin: 0;
    line-height: 1.7;
    color: rgba(248, 236, 217, 0.82);
}

body.theme-cevabdzinica p {
    color: rgba(255, 241, 223, 0.82);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.eyebrow-pill,
.social-pill,
.eyebrow-tag,
.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 700;
}

.eyebrow-pill,
.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 44px;
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 7, 6, 0.34);
    backdrop-filter: blur(18px);
}

.social-pill {
    color: var(--page-accent-soft);
    transition: transform var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.social-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.26);
    color: #fff6e8;
}

.section-eyebrow,
.eyebrow-tag {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: var(--page-accent);
}

.eyebrow-tag {
    margin-bottom: 0.7rem;
}

/* ═══════════ CONCEPT SWITCH (sticky nav) ═══════════ */
.concept-switch {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.concept-switch-inner {
    padding: 6px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 8, 6, 0.85);
    backdrop-filter: blur(28px) saturate(150%);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.concept-switch-track {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.concept-switch-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% - 2px);
    height: 100%;
    border-radius: var(--radius-pill);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 0;
}

.concept-switch-indicator.slide-right {
    transform: translateX(calc(100% + 4px));
}

.concept-switch-btn {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    gap: 9px;
    padding: 12px 20px;
    min-height: 48px;
    border: 0;
    border-radius: var(--radius-pill);
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: color 300ms ease;
    white-space: nowrap;
}

.concept-switch-btn.is-active {
    color: #fff9f0;
}

.concept-switch-btn:hover:not(.is-active) {
    color: rgba(255, 255, 255, 0.75);
}

.concept-switch-btn svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.concept-switch-btn.is-active svg {
    opacity: 1;
    color: var(--page-accent);
}

/* ═══════════ VIEW SECTIONS ═══════════ */
.view-section {
    display: none;
    opacity: 0;
}

.view-section.active {
    display: block;
    opacity: 1;
    animation: sectionFade 700ms ease both;
}

@keyframes sectionFade {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════ HERO ═══════════ */
.hero {
    position: relative;
    isolation: isolate;
    overflow: clip;
}

.hero-bg,
.hero-gradient,
.grain-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translate3d(0, 0, 0) scale(1);
    transition: transform 160ms linear;
    will-change: transform;
}

.hero-restaurant .hero-bg {
    background-image: url('./assets/images/indoor_sitting-area-horizontal-img.webp');
}

.hero-cevabdzinica .hero-bg {
    background-image: url('./assets/images/food-horizontal/meals-on-table-premium-feel-AAA.webp');
}

.hero-gradient {
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(8, 7, 6, 0.2) 0%, rgba(8, 7, 6, 0.78) 52%, var(--page-bg) 100%),
        linear-gradient(90deg, rgba(10, 8, 6, 0.7) 0%, rgba(10, 8, 6, 0.08) 42%, rgba(10, 8, 6, 0.75) 100%);
}

.grain-overlay {
    z-index: -1;
    opacity: 0.3;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    inset: auto;
    border-radius: 50%;
    filter: blur(28px);
    pointer-events: none;
    z-index: -1;
}

.hero-orb-left {
    top: 14%;
    left: -4%;
    width: 180px;
    height: 180px;
    background: rgba(212, 155, 74, 0.2);
}

.hero-orb-right {
    right: 4%;
    bottom: 26%;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.08);
}

body.theme-cevabdzinica .hero-orb-left {
    background: rgba(242, 154, 56, 0.24);
}

body.theme-cevabdzinica .hero-orb-right {
    background: rgba(255, 212, 164, 0.1);
}

.hero-shell {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    padding: 80px 0 44px;
    display: flex;
    flex-direction: column;
}

.hero-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.hero-grid {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: clamp(2.4rem, 4vw, 4.5rem);
    align-items: center;
    padding: clamp(2.8rem, 7vw, 5.8rem) 0 1rem;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.brand-lockup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.35rem;
}

.logo-restoran {
    /* Automatski skida crnu pozadinu slike (screen blending) 
       kako bi ostao samo čisti prozirni logo u bojama na tamnoj stranici! */
    mix-blend-mode: screen;
}

.brand-logo {
    width: clamp(180px, 30vw, 420px);
    filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.34));
}

.brand-type {
    margin: 0;
    color: var(--page-accent);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.year-badge {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-pill);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--page-accent);
}

.hero h1 {
    font-size: clamp(4.2rem, 11vw, 7.6rem);
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.hero-lead {
    max-width: 58ch;
    font-size: clamp(1rem, 1.65vw, 1.15rem);
    color: rgba(248, 236, 217, 0.88);
}

body.theme-cevabdzinica .hero-lead {
    color: rgba(255, 241, 223, 0.88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.95rem 1.45rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    transition:
        transform var(--transition-fast),
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--page-accent);
    color: #1b120b;
    font-weight: 800;
}

.btn-secondary {
    border-color: var(--page-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--page-text);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
    margin-top: 1.8rem;
    width: 100%;
}

.metric-card {
    width: 100%;
    min-height: auto;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--page-border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 100%),
        var(--page-surface);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.metric-label {
    display: inline-block;
    margin-bottom: 0.55rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--page-accent);
    font-weight: 700;
}

.metric-card strong,
.metric-card small {
    display: block;
}

.metric-card strong {
    font-size: 0.96rem;
    line-height: 1.35;
}

.metric-card small {
    margin-top: 0.35rem;
    color: rgba(248, 236, 217, 0.62);
    font-size: 0.82rem;
    line-height: 1.45;
}

body.theme-cevabdzinica .metric-card small {
    color: rgba(255, 241, 223, 0.64);
}

/* ═══════════ HERO STAGE CAROUSEL ═══════════ */
.hero-stage {
    position: relative;
    min-height: 540px;
    will-change: transform;
}



.stage-card,
.story-media,
.signature-media {
    position: relative;
    overflow: hidden;
    border-radius: clamp(24px, 4vw, 34px);
    box-shadow: var(--shadow-xl);
}

.stage-card::after,
.story-media::after,
.signature-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: inherit;
    pointer-events: none;
}

.stage-card img,
.story-media img,
.story-media video,
.signature-media img,
.signature-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.stage-card:hover img,
.story-media:hover img,
.story-media:hover video,
.signature-card:hover .signature-media img,
.signature-card:hover .signature-media video {
    transform: scale(1.05);
}

.stage-card {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1200ms ease, visibility 1200ms ease;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stage-card.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.stage-carousel {
    position: relative;
    width: min(420px, 90%);
    height: 100%;
    min-height: 480px;
    aspect-ratio: 4 / 4.9;
    margin-left: auto;
}

.stage-note {
    position: absolute;
    left: min(24px, 5%);
    bottom: 0;
    width: min(360px, 78%);
    padding: 1.2rem 1.3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--page-border);
    background: rgba(16, 12, 9, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.stage-note-label {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--page-accent);
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}

.stage-note p {
    color: rgba(255, 248, 239, 0.78);
}

/* ═══════════ CONTENT SECTIONS ═══════════ */
.content-section {
    padding: clamp(4.8rem, 9vw, 7rem) 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.6rem;
    align-items: end;
    margin-bottom: clamp(2.2rem, 5vw, 3.2rem);
}

.section-heading h2,
.cta-copy h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.04em;
}

.footer-brand h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    letter-spacing: -0.03em;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 4vw, 2rem);
    align-items: stretch;
}

.story-card,
.signature-card,
.cta-panel,
.site-footer {
    border: 1px solid var(--page-border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 100%),
        var(--page-surface);
}

.story-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.story-card h3 {
    font-size: clamp(1.9rem, 3.3vw, 2.7rem);
    margin-bottom: 1rem;
}

.feature-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.35rem;
    color: rgba(248, 236, 217, 0.82);
}

.feature-list li::before {
    content: '';
    position: absolute;
    top: 0.72rem;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--page-accent);
}

.story-media {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.story-media img,
.story-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.signature-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.signature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
}

.signature-media {
    aspect-ratio: 4 / 4.2;
}

.signature-copy {
    padding: 1.35rem 1.35rem 1.5rem;
}

.signature-copy h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

/* ═══════════ GALLERY GRID ═══════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.gallery-item {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--page-border);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.gallery-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: inherit;
    pointer-events: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* ═══════════ GOOGLE REVIEWS ═══════════ */
.reviews-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
    gap: 1.5rem;
    align-items: start;
}

.reviews-summary {
    padding: 2rem 1.8rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--page-border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 100%),
        var(--page-surface);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 80px;
}

.reviews-badge {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviews-score {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
}

.reviews-count {
    display: block;
    font-size: 0.85rem;
    color: var(--page-muted);
    margin-top: 4px;
}

.reviews-stars {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.15);
}

.star.filled {
    color: #FBBC05;
}

.star.partial {
    color: #FBBC05;
    opacity: 0.5;
}

.reviews-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    margin-top: 0.5rem;
}

.reviews-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card {
    padding: 1.4rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--page-border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 100%),
        var(--page-surface);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.16);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--page-accent), var(--page-accent-soft));
    display: grid;
    place-items: center;
    color: #1b120b;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-name {
    display: block;
    font-size: 0.95rem;
}

.review-date {
    display: block;
    font-size: 0.78rem;
    color: var(--page-muted);
    margin-top: 2px;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.75rem;
}

.review-stars .star {
    font-size: 0.95rem;
}

.review-text {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.65;
    color: rgba(248, 236, 217, 0.75);
}

body.theme-cevabdzinica .review-text {
    color: rgba(255, 241, 223, 0.75);
}

/* ═══════════ CTA & FOOTER ═══════════ */
.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 1.5rem;
    align-items: center;
    padding: clamp(1.6rem, 4vw, 2.3rem);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.cta-links {
    display: grid;
    gap: 0.9rem;
}

.cta-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 1rem 1.15rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    transition: transform var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
}

.cta-link::after {
    content: '↗';
    font-size: 1rem;
    color: var(--page-accent);
}

.cta-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

.site-footer {
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 34px 34px 0 0;
    border-bottom: 0;
}

.footer-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 2rem;
    padding: clamp(2rem, 5vw, 3rem) 0;
}

.footer-brand {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.footer-logo {
    width: clamp(140px, 20vw, 300px);
    flex: 0 0 auto;
}

.footer-hours {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-hours-title {
    display: block;
    color: var(--page-accent);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.footer-hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-hours-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: rgba(248, 236, 217, 0.82);
}

.footer-hours-row strong {
    flex: 0 0 auto;
    min-width: 110px;
    color: rgba(248, 236, 217, 0.95);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    justify-content: center;
    padding-left: clamp(1rem, 4vw, 3rem);
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0.4rem 0;
    color: rgba(248, 236, 217, 0.82);
    font-size: 1.05rem;
    font-weight: 500;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.footer-links a:hover {
    transform: translateX(6px);
    color: var(--page-accent);
}

/* ═══════════ CUSTOM CURSOR ═══════════ */
.custom-cursor,
.paw-stamp-layer {
    display: none;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
    cursor: none;
}

body.has-custom-cursor .custom-cursor,
body.has-custom-cursor .paw-stamp-layer {
    display: block;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate3d(-100px, -100px, 0);
    transition: opacity var(--transition-fast);
}

.custom-cursor.is-visible {
    opacity: 1;
}

.cursor-core {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transition: transform var(--transition-fast);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.cursor-paw {
    width: 36px;
    height: 36px;
    fill: var(--page-accent);
    stroke: var(--page-accent);
    stroke-width: 6px;
    stroke-linejoin: round;
}

.custom-cursor.is-hovering .cursor-core {
    transform: scale(1.18);
}

.custom-cursor.is-pressing .cursor-core {
    transform: scale(0.92);
}

.paw-stamp-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
}

.paw-print {
    position: fixed;
    width: 36px;
    height: 36px;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(var(--stamp-rotation, 0deg)) scale(0.45);
    opacity: 0;
    animation: pawStamp 900ms ease forwards;
}

.paw-print svg {
    width: 100%;
    height: 100%;
    fill: rgba(255, 255, 255, 0.26);
}

@keyframes pawStamp {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(var(--stamp-rotation, 0deg)) scale(0.35);
    }
    18% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, calc(-50% - 16px)) rotate(var(--stamp-rotation, 0deg)) scale(1.08);
    }
}

/* ═══════════ SCROLL CAT DECORATION ═══════════ */
.scroll-cat {
    position: fixed;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(100px, 12vw, 160px);
    z-index: 50;
    pointer-events: none;
    opacity: 0.22; /* Increased opacity */
    transition: opacity 600ms ease;
    will-change: transform;
}

.scroll-cat svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.1));
}

/* ═══════════ REVEAL ANIMATION ═══════════ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════ RESPONSIVE: TABLET ═══════════ */
@media (max-width: 1080px) {
    .hero-grid,
    .section-heading,
    .story-grid,
    .cta-panel,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 560px;
    }

    .reviews-section {
        grid-template-columns: 1fr;
    }

    .reviews-summary {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem 2rem;
    }

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

@media (max-height: 940px) and (min-width: 1081px) {
    .hero-shell {
        padding-bottom: 36px;
    }

    .hero-grid {
        padding-top: 2.2rem;
    }

    .hero-stage {
        min-height: 500px;
    }
}

/* ═══════════ RESPONSIVE: MOBILE ═══════════ */
@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .hero-shell {
        padding: 70px 0 28px;
    }

    .scroll-cat {
        width: 76px;
        right: -4px;
        opacity: 0.15;
    }

    .hero-topbar {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .hero-topbar .eyebrow-pill {
        display: none;
    }

    .hero-grid {
        padding: 2rem 0 1.2rem;
        text-align: center;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .brand-lockup {
        align-items: center;
        text-align: center;
    }

    .hero-lead {
        max-width: 52ch;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stage {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2.5rem;
        padding-bottom: 1rem;
    }

    .stage-carousel {
        position: relative;
        min-height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 20px 0 10px;
    }

    .stage-card {
        position: relative;
        inset: auto;
        width: min(100%, 320px);
        margin: 0 auto;
        aspect-ratio: 4 / 4.7;
    }

    .stage-note {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 340px;
        text-align: left;
    }

    .hero-metrics {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
        width: 100%;
        max-width: 340px;
    }

    .story-grid,
    .signature-grid,
    .cta-panel,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .story-media {
        min-height: 350px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        aspect-ratio: 16 / 9;
    }

    .metric-card {
        width: 100%;
        min-height: auto;
        text-align: left;
    }

    .concept-switch-btn {
        padding: 9px 18px;
        min-height: 40px;
        font-size: 0.82rem;
    }

    .concept-switch-btn svg {
        display: none;
    }

    .concept-switch {
        top: 12px;
    }

    .concept-switch-inner {
        padding: 4px;
    }

    .section-heading {
        text-align: center;
    }

    .section-heading h2,
    .cta-copy h2,
    .footer-brand h2 {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
    }

    .cta-copy {
        text-align: center;
    }

    .story-card,
    .signature-copy,
    .cta-panel {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .reviews-section {
        grid-template-columns: 1fr;
    }

    .reviews-summary {
        position: static;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .reviews-stars {
        justify-content: center;
    }

    .footer-brand {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        padding-left: 0;
        align-items: center;
    }
}

/* ═══════════ ACCESSIBILITY ═══════════ */
@media (hover: none), (pointer: coarse) {
    html,
    body,
    a,
    button {
        cursor: auto;
    }

    .custom-cursor,
    .paw-stamp-layer {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
        scroll-behavior: auto !important;
    }
}
