/* ============================
   PENROSE CREAMERY — style.css
   Fun, colorful, homemade-pro
   ============================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
    --cream:      #FFFCF2;
    --cream-dk:   #FFF3DC;
    --dark:       #1E0E06;
    --chocolate:  #3B1A0C;
    --pink:       #F26D8B;
    --mint:       #3ABFA3;
    --yellow:     #F5C842;
    --coral:      #F0623A;
    --lavender:   #9B87E8;
    --peach:      #F4A46A;
    --green:      #2A7A55;
    --mid:        #8A6A58;
    --border:     #E8D8C6;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

.animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate.visible { opacity: 1; transform: translateY(0); }

/* ── Shared ── */
.eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    margin-bottom: 20px;
}
.eyebrow.rust { color: var(--coral); }
.eyebrow.centered { text-align: center; }
.centered-eyebrow { text-align: center; }

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--coral);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 800;
    border-bottom: 2px solid rgba(240,98,58,0.25);
    padding-bottom: 3px;
    transition: gap 0.2s, border-color 0.2s;
}
.section-link:hover { gap: 13px; border-color: var(--coral); }
.section-link i { font-size: 0.75rem; }

/* ============================
   NAVBAR
   ============================ */

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 48px;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 252, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(30,14,6,0.06);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    font-family: 'Pacifico', cursive;
    font-size: 1.45rem;
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    transition: color 0.35s ease;
    letter-spacing: 0.3px;
}
.navbar.scrolled .nav-logo { color: var(--chocolate); }

/* Inline nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.25s ease;
}

/* Silky underline that slides in from left */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover { color: rgba(255,255,255,1); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.navbar.scrolled .nav-link { color: var(--mid); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--chocolate); }
.navbar.scrolled .nav-link::after { background: var(--coral); }

.nav-hours {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.4px;
    transition: color 0.35s ease;
}
.navbar.scrolled .nav-hours { color: var(--mid); }

/* ============================
   HERO
   ============================ */

.hero {
    background: var(--chocolate);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 600px at 15% 80%, rgba(242,109,139,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 600px 500px at 85% 20%, rgba(58,191,163,0.12) 0%, transparent 55%),
        radial-gradient(ellipse 500px 400px at 50% 50%, rgba(245,200,66,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, #F26D8B 2.5px, transparent 2.5px),
        radial-gradient(circle, #F5C842 2px, transparent 2px),
        radial-gradient(circle, #3ABFA3 2px, transparent 2px),
        radial-gradient(circle, #9B87E8 2px, transparent 2px),
        radial-gradient(circle, #F0623A 2px, transparent 2px),
        radial-gradient(circle, #F26D8B 1.5px, transparent 1.5px),
        radial-gradient(circle, #F5C842 1.5px, transparent 1.5px),
        radial-gradient(circle, #3ABFA3 1.5px, transparent 1.5px);
    background-size:
        310px 250px, 420px 380px, 360px 290px, 480px 340px,
        390px 310px, 270px 220px, 500px 400px, 330px 260px;
    background-position:
        40px 60px, 130px 280px, 220px 90px, 350px 200px,
        80px 380px, 460px 120px, 180px 450px, 520px 320px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    color: rgba(255,255,255,0.5);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.dot-pink { width: 6px; height: 6px; background: var(--pink); border-radius: 50%; display: inline-block; }
.dot-mint { width: 6px; height: 6px; background: var(--mint); border-radius: 50%; display: inline-block; }

.hero-title { margin-bottom: 24px; }

.hero-title .big-name {
    font-family: 'Pacifico', cursive;
    font-size: clamp(4rem, 12vw, 10rem);
    color: var(--cream);
    letter-spacing: -2px;
    line-height: 1;
    display: block;
    text-shadow: 0 6px 40px rgba(242,109,139,0.25), 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title .sub-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    display: block;
    margin-top: 16px;
}

.hero-sub {
    color: rgba(255,255,255,0.48);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 48px;
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-btn.primary {
    background: var(--yellow);
    color: var(--chocolate);
    animation: wiggle 3.5s ease-in-out 1.5s infinite;
}

@keyframes wiggle {
    0%, 90%, 100% { transform: rotate(0deg); }
    92% { transform: rotate(-2deg); }
    94% { transform: rotate(2deg); }
    96% { transform: rotate(-1.5deg); }
    98% { transform: rotate(1.5deg); }
}

.hero-btn.primary:hover {
    transform: translateY(-3px) rotate(0deg) !important;
    box-shadow: 0 10px 28px rgba(245,200,66,0.4);
    animation: none;
}

.hero-btn.ghost {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.65);
    border: 1.5px solid rgba(255,255,255,0.15);
}
.hero-btn.ghost:hover { background: rgba(255,255,255,0.12); color: #fff; transform: translateY(-2px); }

.scroll-line {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.scroll-line span {
    display: block;
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2));
    margin: 0 auto;
    animation: lineReveal 2.4s ease-in-out infinite;
}
@keyframes lineReveal {
    0%   { clip-path: inset(0 0 100% 0); opacity: 1; }
    50%  { clip-path: inset(0 0 0% 0);   opacity: 1; }
    100% { clip-path: inset(0 0 0% 0);   opacity: 0; }
}

/* ============================
   TICKER
   ============================ */

.ticker-strip {
    background: var(--yellow);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
    border-top: 3px solid var(--chocolate);
    border-bottom: 3px solid var(--chocolate);
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    animation: ticker 28s linear infinite;
    white-space: nowrap;
}

.ticker-track span {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--chocolate);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.dot-sep { font-size: 0.35rem; color: var(--chocolate); opacity: 0.5; }

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================
   FLAVORS
   ============================ */

.flavors { background: var(--cream); padding: 96px 48px 80px; }
.flavors-inner { max-width: 1040px; margin: 0 auto; }

.flavors-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
    gap: 40px;
}

.flavors-header h2 {
    font-family: 'Pacifico', cursive;
    font-size: 2.9rem;
    color: var(--chocolate);
    line-height: 1.15;
}

.flavors-note {
    font-size: 0.85rem;
    color: var(--mid);
    max-width: 240px;
    text-align: right;
    line-height: 1.65;
    flex-shrink: 0;
    font-weight: 600;
}
.flavors-note a { color: var(--coral); text-decoration: none; font-weight: 700; white-space: nowrap; }

.flavor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.flavor-item {
    padding: 24px;
    border-radius: 18px;
    position: relative;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    overflow: hidden;
    cursor: default;
}

.flavor-item::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 110px; height: 110px;
    border-radius: 50%;
    opacity: 0.14;
    transition: transform 0.4s ease;
}

.flavor-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(30,14,6,0.12); }
.flavor-item:hover::before { transform: scale(1.4); }

.flavor-item:nth-child(1) { background: #FFF8E6; }
.flavor-item:nth-child(1)::before { background: #F5C842; }
.flavor-item:nth-child(1) h3 { color: #A07008; }

.flavor-item:nth-child(2) { background: #FFF0F4; }
.flavor-item:nth-child(2)::before { background: #F26D8B; }
.flavor-item:nth-child(2) h3 { color: #C03060; }

.flavor-item:nth-child(3) { background: #F8EFE6; }
.flavor-item:nth-child(3)::before { background: #8B5E3C; }
.flavor-item:nth-child(3) h3 { color: #6B3A18; }

.flavor-item:nth-child(4) { background: #FFFBE6; }
.flavor-item:nth-child(4)::before { background: #F5C842; }
.flavor-item:nth-child(4) h3 { color: #9A7000; }

.flavor-item:nth-child(5) { background: #F5EDEA; }
.flavor-item:nth-child(5)::before { background: #5C1E10; }
.flavor-item:nth-child(5) h3 { color: #4A1810; }

.flavor-item:nth-child(6) { background: #F3F0FD; }
.flavor-item:nth-child(6)::before { background: #9B87E8; }
.flavor-item:nth-child(6) h3 { color: #6040C0; }

.flavor-item:nth-child(7) { background: #FFF4EA; }
.flavor-item:nth-child(7)::before { background: #F4A46A; }
.flavor-item:nth-child(7) h3 { color: #B05A10; }

.flavor-item:nth-child(8) { background: #EDFAF4; }
.flavor-item:nth-child(8)::before { background: #3ABFA3; }
.flavor-item:nth-child(8) h3 { color: #1A6B52; }

.flavor-emoji { font-size: 1.8rem; margin-bottom: 10px; display: block; }

.flavor-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.flavor-item h3 {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.tag {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 3px;
    text-transform: uppercase;
}
.tag.dairy { background: rgba(42,122,85,0.12); color: var(--green); }
.tag.sorbet { background: rgba(240,98,58,0.12); color: var(--coral); }

.flavor-item > p {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.65;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.seasonal-pill {
    font-family: 'Nunito', sans-serif;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--coral);
    background: rgba(240,98,58,0.12);
    padding: 2px 7px;
    border-radius: 4px;
    margin-left: 5px;
    vertical-align: middle;
}

.flavors-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 2px dashed var(--border);
}

.flavors-footer p {
    font-size: 0.82rem;
    color: var(--mid);
    line-height: 1.65;
    max-width: 440px;
    font-weight: 600;
}

/* ============================
   PHOTO STRIP
   ============================ */

.photo-strip {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    height: 380px;
    gap: 3px;
    background: var(--chocolate);
}

.strip-item {
    position: relative;
    overflow: hidden;
}

.strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(1.1);
    transition: transform 0.7s ease, filter 0.4s ease;
}

.strip-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.7) saturate(1.3);
}

.strip-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(30,14,6,0.75) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.strip-item:hover .strip-overlay { opacity: 1; }

.strip-overlay p {
    font-family: 'Pacifico', cursive;
    font-size: 1.2rem;
    color: var(--cream);
    letter-spacing: 0.5px;
}

/* ============================
   MARQUEE BANNER
   ============================ */

.marquee-banner {
    background: var(--chocolate);
    overflow: hidden;
    padding: 16px 0;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    animation: ticker 22s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: 'Pacifico', cursive;
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}

.marquee-track i { font-size: 0.4rem; color: var(--yellow); opacity: 0.7; }

/* ============================
   STORY SECTION
   ============================ */

.story {
    background: var(--cream-dk);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
}

.story-photo {
    position: relative;
    overflow: hidden;
    min-height: 580px;
}

.story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.story-photo:hover img { transform: scale(1.04); }

.photo-caption {
    position: absolute;
    bottom: 132px; left: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    background: rgba(30,14,6,0.6);
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.story-stats {
    position: absolute;
    bottom: 24px; left: 20px; right: 20px;
    background: rgba(30,14,6,0.75);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    display: flex;
    justify-content: space-around;
    padding: 18px 12px;
}

.stat { text-align: center; display: flex; flex-direction: column; gap: 2px; }

.stat strong {
    font-family: 'Pacifico', cursive;
    font-size: 1.6rem;
    color: var(--yellow);
    line-height: 1;
}

.stat span {
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-text {
    padding: 80px 68px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text h2 {
    font-family: 'Pacifico', cursive;
    font-size: 2.3rem;
    color: var(--chocolate);
    line-height: 1.25;
    margin-bottom: 28px;
}

.story-text p {
    color: var(--mid);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 16px;
    font-weight: 500;
}

.story-text p:last-of-type { margin-bottom: 32px; }

/* ============================
   REVIEWS
   ============================ */

.reviews {
    background: var(--chocolate);
    padding: 88px 52px;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, #F5C842 2px, transparent 2px),
        radial-gradient(circle, #F26D8B 1.5px, transparent 1.5px),
        radial-gradient(circle, #3ABFA3 2px, transparent 2px);
    background-size: 280px 200px, 350px 280px, 320px 240px;
    background-position: 60px 40px, 180px 160px, 320px 80px;
    opacity: 0.18;
    pointer-events: none;
}

.reviews-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.reviews-inner h2 {
    font-family: 'Pacifico', cursive;
    font-size: 2.4rem;
    color: var(--cream);
    margin-bottom: 48px;
    text-align: center;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 28px;
    transition: background 0.2s, transform 0.2s;
}
.review:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); }

.review .stars {
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
    display: block;
}

.review:nth-child(1) .stars { color: var(--yellow); }
.review:nth-child(2) .stars { color: var(--pink); }
.review:nth-child(3) .stars { color: var(--mint); }

.review p:not(.stars) {
    font-style: italic;
    color: rgba(255,255,255,0.65);
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.review span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.28);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* ============================
   PHOTO GALLERY
   ============================ */

.gallery-section {
    background: var(--cream);
    padding: 72px 0 0;
    border-top: 1px solid var(--border);
}

.gallery-header {
    padding: 0 52px;
    margin-bottom: 36px;
}

.gallery-header .eyebrow {
    color: var(--coral);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    display: block;
    text-align: center;
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 280px;
    gap: 3px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--cream-dk);
}

.gallery-item.g-tall {
    grid-row: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82) saturate(1.05);
    transition: transform 0.65s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.65) saturate(1.2);
}

.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(30,14,6,0.8) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }

.gallery-overlay span {
    font-family: 'Pacifico', cursive;
    font-size: 1.05rem;
    color: var(--cream);
}

/* ============================
   VISIT
   ============================ */

.visit {
    background: var(--cream);
    padding: 100px 52px;
    border-top: 1px solid var(--border);
}

.visit-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.visit-text h2 {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    color: var(--chocolate);
    line-height: 1.1;
    margin-bottom: 18px;
}

.visit-text > p {
    color: var(--mid);
    font-size: 0.975rem;
    line-height: 1.8;
    margin-bottom: 36px;
    font-weight: 500;
}

.hours-table {
    border-top: 2px dashed var(--border);
    margin-bottom: 28px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.9rem;
}
.hours-row span:first-child { color: var(--chocolate); font-weight: 700; }
.hours-row span:last-child  { color: var(--mid); font-weight: 600; }
.hours-row.closed span      { color: var(--border); }

.visit-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
.visit-contact a { color: var(--coral); text-decoration: none; font-weight: 800; transition: opacity 0.2s; }
.visit-contact a:hover { opacity: 0.7; }
.visit-contact .dot { color: var(--border); }

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--chocolate);
    color: var(--cream);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 800;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-directions:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30,14,6,0.22);
}

.map-box {
    background: linear-gradient(135deg, #FFF4E8 0%, #FFF0D4 100%);
    border: 2px solid var(--border);
    border-radius: 22px;
    height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}
.map-box:hover { transform: translateY(-3px); }

.map-box::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 150px; height: 150px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.12;
}

.map-box::after {
    content: '';
    position: absolute;
    bottom: -35px; left: -35px;
    width: 110px; height: 110px;
    background: var(--mint);
    border-radius: 50%;
    opacity: 0.12;
}

.map-box i { font-size: 2.4rem; color: var(--coral); position: relative; z-index: 1; }

.map-box p {
    color: var(--chocolate);
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.map-box small { color: var(--mid); font-size: 0.8rem; font-weight: 700; position: relative; z-index: 1; }

.map-box a {
    color: var(--coral);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 800;
    margin-top: 8px;
    display: block;
    transition: opacity 0.2s;
    position: relative;
    z-index: 1;
}
.map-box a:hover { opacity: 0.72; }

/* ============================
   FOOTER
   ============================ */

.footer { background: var(--chocolate); padding: 44px 52px; }

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-name {
    font-family: 'Pacifico', cursive;
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 8px;
}

.footer-left p:not(.footer-name) {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.65;
    font-weight: 600;
}

.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }

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

.footer-social a {
    color: rgba(255,255,255,0.3);
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover { color: var(--yellow); transform: translateY(-2px); }

.footer-credit { font-size: 0.74rem; color: rgba(255,255,255,0.22); font-weight: 700; }

.footer-credit a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-credit a:hover { color: var(--yellow); }

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 960px) {
    .flavors-header  { flex-direction: column; align-items: flex-start; }
    .flavors-note    { text-align: left; max-width: 100%; }
    .flavor-grid     { grid-template-columns: 1fr; }
    .story-inner     { grid-template-columns: 1fr; }
    .story-photo     { min-height: 360px; }
    .story-text      { padding: 60px 44px; }
    .review-grid     { grid-template-columns: 1fr; gap: 16px; }
    .visit-inner     { grid-template-columns: 1fr; gap: 48px; }
    .footer-inner    { flex-direction: column; align-items: flex-start; gap: 28px; }
    .footer-right    { align-items: flex-start; }
    .photo-strip     { grid-template-columns: 1fr 1fr; height: 280px; }
    .strip-large     { grid-column: span 2; }
    .gallery-grid    { grid-template-columns: 1fr 1fr; grid-template-rows: 220px; }
}

@media (max-width: 768px) {
    .navbar          { padding: 0 20px; }
    .nav-hours       { display: none; }
    .nav-links       { gap: 20px; }
    .nav-link        { font-size: 0.78rem; }
    .flavors         { padding: 72px 24px; }
    .flavors-header h2 { font-size: 2.1rem; }
    .flavors-footer  { flex-direction: column; align-items: flex-start; }
    .story-text      { padding: 48px 28px; }
    .story-text h2   { font-size: 1.75rem; }
    .reviews         { padding: 72px 24px; }
    .reviews-inner h2 { font-size: 1.8rem; }
    .visit           { padding: 72px 24px; }
    .visit-text h2   { font-size: 2.2rem; }
    .footer          { padding: 36px 24px; }
    .overlay-link    { font-size: 2.8rem; }
    .photo-strip     { grid-template-columns: 1fr; height: auto; }
    .strip-item      { height: 220px; }
    .strip-large     { grid-column: span 1; }
    .gallery-grid    { grid-template-columns: 1fr 1fr; grid-template-rows: 180px; }
    .gallery-header  { padding: 0 24px; }
}
