/* ========================================
   ZEST BAKERY & COFFEEHOUSE
   Premium Dark Luxury Styles
   ======================================== */

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

:root {
    --bg-primary: #0a0f1a;
    --bg-secondary: #0f172a;
    --bg-card: #131c2e;
    --bg-elevated: #1a2540;
    --teal: #0d9488;
    --teal-light: #14b8a6;
    --teal-dark: #0a7a70;
    --gold: #d4a853;
    --gold-light: #e8c47c;
    --gold-dark: #b8923f;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--slate-300);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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;
}

/* --- Typography --- */
.section-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--slate-100);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--slate-400);
    max-width: 560px;
    line-height: 1.8;
}

.gold {
    color: var(--gold);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 14px 32px;
    border-radius: 4px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--slate-200);
    border-color: var(--slate-600);
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal-light);
    transform: translateY(-2px);
}

.btn-outline-small {
    background: transparent;
    color: var(--teal);
    border-color: var(--teal);
    padding: 10px 24px;
    font-size: 0.8rem;
}

.btn-outline-small:hover {
    background: var(--teal);
    color: var(--bg-primary);
}

.btn-full {
    width: 100%;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(10, 15, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-100);
    transition: color var(--transition);
}

.logo-icon {
    color: var(--gold);
}

.logo-light {
    color: var(--slate-200);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-400);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--slate-100);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    color: var(--gold);
    border: 1px solid rgba(212, 168, 83, 0.3);
    padding: 8px 20px;
    border-radius: 3px;
    transition: all var(--transition);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: rgba(212, 168, 83, 0.1);
    border-color: var(--gold);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate-300);
    transition: all var(--transition);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--slate-300);
    transition: all var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.mobile-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 26, 0.7) 0%,
        rgba(10, 15, 26, 0.5) 40%,
        rgba(10, 15, 26, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 860px;
}

.hero-tagline {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--slate-100);
    margin-bottom: 28px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--slate-400);
    max-width: 580px;
    margin: 0 auto 44px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate-500);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* --- About --- */
.about {
    padding: 120px 0;
    background: var(--bg-secondary);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 4px solid var(--bg-secondary);
}

.about-img-secondary img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    top: -20px;
    left: -30px;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    padding: 24px 28px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.3);
}

.about-accent .accent-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--slate-100);
    line-height: 1;
}

.about-accent .accent-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.about-text .section-title {
    margin-bottom: 24px;
}

.about-text p {
    color: var(--slate-400);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.85;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--slate-800);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--slate-500);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- Menu --- */
.menu {
    padding: 120px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.menu-category {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 40px 36px;
    border: 1px solid rgba(13, 148, 136, 0.08);
    transition: all var(--transition);
}

.menu-category:hover {
    border-color: rgba(13, 148, 136, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--slate-800);
}

.category-icon {
    color: var(--teal);
    flex-shrink: 0;
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--slate-100);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--slate-200);
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--slate-500);
    line-height: 1.5;
}

.menu-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.menu-footer p {
    color: var(--slate-500);
    font-size: 0.95rem;
}

/* --- Craft --- */
.craft {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.craft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.craft-content .section-title {
    margin-bottom: 40px;
}

.craft-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.craft-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
}

.craft-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
    opacity: 0.5;
    line-height: 1;
    padding-top: 4px;
}

.craft-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--slate-100);
    margin-bottom: 8px;
}

.craft-item p {
    font-size: 0.95rem;
    color: var(--slate-400);
    line-height: 1.8;
}

.craft-visual {
    position: relative;
}

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

.craft-img-stack img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.craft-quote {
    position: absolute;
    bottom: -30px;
    left: -30px;
    right: -20px;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    padding: 32px 36px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.3);
}

.craft-quote p {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--slate-100);
    line-height: 1.6;
    margin-bottom: 12px;
}

.craft-quote span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

/* --- Visit --- */
.visit {
    padding: 120px 0;
    background: var(--bg-primary);
}

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

.visit-info .section-title {
    margin-bottom: 40px;
}

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

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

.detail-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--slate-200);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.95rem;
    color: var(--slate-400);
    line-height: 1.7;
}

.visit-detail a {
    color: var(--teal);
    transition: color var(--transition);
}

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

.visit-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--slate-800);
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
    display: block;
    filter: grayscale(0.6) brightness(0.7) contrast(1.1);
    transition: filter var(--transition);
}

.map-wrapper:hover iframe {
    filter: grayscale(0.3) brightness(0.8) contrast(1.05);
}

/* --- CTA --- */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 15, 26, 0.92) 0%,
        rgba(10, 15, 26, 0.75) 60%,
        rgba(10, 15, 26, 0.6) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.cta-content .section-title {
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.05rem;
    color: var(--slate-400);
    line-height: 1.85;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text .section-title {
    margin-bottom: 20px;
}

.contact-text p {
    color: var(--slate-400);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 36px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--slate-300);
    transition: all var(--transition);
    padding: 12px 0;
    border-bottom: 1px solid var(--slate-800);
}

.contact-link:hover {
    color: var(--gold);
    border-color: rgba(212, 168, 83, 0.3);
    padding-left: 8px;
}

.contact-link svg {
    color: var(--teal);
}

/* --- Form --- */
.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 44px;
    border: 1px solid rgba(13, 148, 136, 0.08);
}

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

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--slate-700);
    border-radius: 6px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--slate-200);
    transition: all var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: var(--slate-600);
}

.form-input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: var(--bg-primary);
    color: var(--slate-300);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 6px;
    color: var(--teal-light);
    font-size: 0.9rem;
}

.form-success svg {
    color: var(--teal);
    flex-shrink: 0;
}

/* --- Footer --- */
.site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--slate-800);
    padding: 80px 0 0;
}

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

.footer-brand p {
    color: var(--slate-500);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 20px;
    max-width: 300px;
}

.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--slate-200);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-hours p,
.footer-contact p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.8;
}

.footer-contact a {
    color: var(--teal);
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--slate-800);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--slate-600);
}

/* --- Mobile Navigation --- */
.nav.mobile-open {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.nav.mobile-open .nav-list {
    flex-direction: column;
    gap: 32px;
}

.nav.mobile-open .nav-link {
    font-size: 1.2rem;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid,
    .craft-grid,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        max-width: 560px;
    }

    .about-img-secondary {
        right: -20px;
        bottom: -20px;
    }

    .about-accent {
        left: -16px;
        top: -16px;
    }

    .craft-quote {
        left: -16px;
        bottom: -20px;
    }

    .menu-categories {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .mobile-toggle {
        display: flex;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .about-img-main img {
        height: 500px;
    }

    .about-img-secondary {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 16px;
        border: none;
    }

    .about-img-secondary img {
        height: 280px;
    }

    .about-accent {
        position: relative;
        left: 0;
        top: 0;
        margin-top: 16px;
        display: inline-flex;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .menu-categories {
        grid-template-columns: 1fr;
    }

    .menu-category {
        padding: 28px 24px;
    }

    .craft-img-stack img {
        height: 450px;
    }

    .craft-quote {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 16px;
    }

    .visit-map iframe {
        height: 350px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 28px 24px;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 100px 16px 60px;
    }

    .about,
    .menu,
    .craft,
    .visit,
    .cta,
    .contact {
        padding: 80px 0;
    }

    .hero-scroll {
        bottom: 24px;
    }
}
