/* ============================================
   The King's Shaved Ice — Custom Styles
   Emerald Green + Cream | Vibrant Geometric
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-emerald: #0D7C5F;
    --color-emerald-dark: #095C46;
    --color-emerald-light: #11A07A;
    --color-emerald-pale: #E8F5EF;
    --color-cream: #FFF8F0;
    --color-cream-dark: #F5E6D3;
    --color-accent-pink: #FF6B8A;
    --color-accent-yellow: #FFB627;
    --color-accent-blue: #4ECDC4;
    --color-accent-purple: #A78BFA;
    --color-text: #1A2E28;
    --color-text-light: #4A635A;
    --color-text-muted: #7A9488;
    --color-white: #FFFFFF;
    --color-border: rgba(13, 124, 95, 0.12);

    --font-display: 'Fredoka', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(13, 124, 95, 0.08);
    --shadow-md: 0 8px 30px rgba(13, 124, 95, 0.12);
    --shadow-lg: 0 20px 60px rgba(13, 124, 95, 0.15);
    --shadow-card: 0 4px 20px rgba(13, 124, 95, 0.10);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* --- Geometric Background Shapes --- */
.geo-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--color-emerald);
    top: -200px;
    right: -200px;
}

.geo-circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--color-accent-pink);
    bottom: 10%;
    left: -150px;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 346px solid var(--color-emerald);
    top: 40%;
    right: -100px;
    opacity: 0.03;
}

.geo-square {
    width: 300px;
    height: 300px;
    background: var(--color-accent-yellow);
    bottom: 30%;
    left: 5%;
    transform: rotate(45deg);
    opacity: 0.03;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 248, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--color-emerald);
    transition: var(--transition-fast);
}

.nav-logo:hover { color: var(--color-emerald-dark); }

.nav-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-emerald);
    border-radius: 10px;
    color: var(--color-white);
    transform: rotate(-5deg);
    transition: var(--transition-fast);
}

.nav-logo:hover .nav-logo-icon { transform: rotate(0deg) scale(1.05); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-light);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-emerald);
    background: var(--color-emerald-pale);
}

.nav-cta {
    background: var(--color-emerald);
    color: var(--color-white) !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--color-emerald-dark);
    color: var(--color-white) !important;
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 24px;
    height: 2.5px;
    background: var(--color-emerald);
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-emerald);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(13, 124, 95, 0.3);
}

.btn-primary:hover {
    background: var(--color-emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 124, 95, 0.35);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-emerald);
    border: 2px solid var(--color-emerald);
}

.btn-secondary:hover {
    background: var(--color-emerald-pale);
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* --- Section Tags & Titles --- */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-emerald-pale);
    color: var(--color-emerald);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    color: var(--color-emerald);
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--color-white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-emerald);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    animation: slideDown 0.6s ease forwards;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-emerald);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s 0.1s ease both;
}

.hero-subheadline {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
    animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.6s 0.4s ease both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-emerald);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

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

/* Hero Image Area */
.hero-image-wrap {
    position: relative;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 7/8;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--color-cream);
    aspect-ratio: 1;
    width: clamp(140px, 20vw, 200px);
}

.hero-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shape-circle {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: var(--color-emerald);
    border-radius: 50%;
    opacity: 0.15;
}

.hero-shape-dots {
    position: absolute;
    bottom: 40px;
    right: -20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(var(--color-accent-pink) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.5;
}

/* --- About Section --- */
.about {
    padding: 100px 0;
    background: var(--color-emerald);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-img-stack {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 9/10;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: -20px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--color-emerald);
    aspect-ratio: 4/3;
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-shape {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: var(--color-accent-yellow);
    border-radius: var(--radius-md);
    transform: rotate(30deg);
    opacity: 0.6;
    z-index: -1;
}

.about-content .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.about-content .section-title {
    color: var(--color-white);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-yellow);
}

.about-feature strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Flavors Section --- */
.flavors {
    padding: 100px 0;
    background: var(--color-cream);
    position: relative;
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.flavor-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.flavor-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.flavor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.flavor-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
}

.flavor-card:nth-child(1) .flavor-card-bg { background: #E53E3E; }
.flavor-card:nth-child(2) .flavor-card-bg { background: #DD6B20; }
.flavor-card:nth-child(3) .flavor-card-bg { background: #3182CE; }
.flavor-card:nth-child(4) .flavor-card-bg { background: #38A169; }
.flavor-card:nth-child(5) .flavor-card-bg { background: #D69E2E; }
.flavor-card:nth-child(6) .flavor-card-bg { background: #D6E4A0; }

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

.flavor-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.flavor-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.flavor-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-emerald-pale);
    color: var(--color-emerald);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.flavors-note {
    margin-top: 48px;
    padding: 24px 32px;
    background: var(--color-emerald-pale);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-emerald);
}

.flavors-note p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- Gallery Section --- */
.gallery {
    padding: 100px 0;
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 16px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: var(--color-white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    transform: translateY(100%);
    transition: var(--transition-base);
}

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

.gallery-item--large {
    grid-column: span 7;
    grid-row: span 1;
}

.gallery-item--tall {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 4; }

/* --- Visit Section --- */
.visit {
    padding: 100px 0;
    background: var(--color-cream);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.visit-info .section-tag { margin-bottom: 16px; }

.visit-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--color-emerald-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-emerald);
}

.visit-detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.visit-detail span,
.visit-detail a {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
}

.visit-detail a:hover { color: var(--color-emerald); }

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

/* --- Contact Section --- */
.contact {
    padding: 100px 0;
    background: var(--color-emerald);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-left .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.contact-left .section-title { color: var(--color-white); }

.contact-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-base);
}

.contact-social-link:hover {
    background: var(--color-white);
    color: var(--color-emerald);
    transform: translateY(-3px);
}

/* Form */
.contact-form {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-cream);
    transition: var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--color-emerald);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(13, 124, 95, 0.1);
}

.form-input::placeholder { color: var(--color-text-muted); }

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 48px 40px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--color-emerald-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-emerald);
}

.success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-emerald);
    border-radius: 10px;
    color: var(--color-white);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    color: var(--color-white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover { color: var(--color-emerald-light); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-emerald-light);
}

.footer-contact a:hover { color: var(--color-emerald-light); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

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

    .gallery-grid {
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item--large { grid-column: span 12; }
    .gallery-item--tall { grid-column: span 6; grid-row: span 1; }
    .gallery-item:nth-child(2) { grid-column: span 6; }
    .gallery-item:nth-child(3) { grid-column: span 6; }
    .gallery-item:nth-child(4) { grid-column: span 4; }
    .gallery-item:nth-child(5) { grid-column: span 4; }
    .gallery-item:nth-child(6) { grid-column: span 4; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        align-items: stretch;
        padding: 90px 24px 24px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
    }

    .nav-links.open { right: 0; }

    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-cta { margin-left: 0; margin-top: 12px; text-align: center; }

    .hero { padding: 100px 0 80px; min-height: auto; }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-wrap { order: -1; max-width: 400px; margin: 0 auto; }

    .hero-image-accent { left: -10px; bottom: -15px; }

    .hero-stats { gap: 16px; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-img-float { right: -10px; bottom: -10px; }

    .flavors-grid { grid-template-columns: 1fr; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--large { grid-column: span 2; }
    .gallery-item--tall { grid-column: span 2; }
    .gallery-item { aspect-ratio: 4/3; }
    .gallery-item:nth-child(2) { grid-column: span 1; }
    .gallery-item:nth-child(3) { grid-column: span 1; }
    .gallery-item:nth-child(4) { grid-column: span 1; }
    .gallery-item:nth-child(5) { grid-column: span 1; }
    .gallery-item:nth-child(6) { grid-column: span 1; }

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

    .visit-grid { grid-template-columns: 1fr; }

    .visit-map { min-height: 300px; }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form { padding: 28px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 1.7rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero-stat-divider { display: none; }

    .section-title { font-size: 1.6rem; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--large,
    .gallery-item--tall,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) { grid-column: span 1; }
}
