/* Little Latte hand-drawn theme */
@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand:wght@400;700&family=Nunito:wght@400;600;700&display=swap');

:root {
    --color-primary: #1c4fa7; /* latte blue */
    --color-ink: #0d2f6a; /* deep outline */
    --color-cream: #f9f4e8; /* paper background */
    --color-text: #0c1b3b;
    --color-muted: #3f4f73;
    --color-shadow: #d9cfbf;
}

* { box-sizing: border-box; }

/* Smooth scrolling and motion preferences */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    font-family: 'Patrick Hand', 'Nunito', system-ui, -apple-system, sans-serif;
    background-color: var(--color-cream);
    color: var(--color-text);
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    background-image: radial-gradient(circle at 12px 12px, rgba(13,47,106,0.06) 1px, transparent 0),
                      radial-gradient(circle at 60px 40px, rgba(29,79,167,0.05) 1.2px, transparent 0);
    background-size: 120px 120px, 160px 160px;
}

a { color: var(--color-primary); text-decoration: none; font-weight: 700; transition: transform 180ms ease; }
a:hover { 
    text-decoration: underline;
    transform: translateY(-1px);
}

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

/* Fluid Typography Scale */
h1, .text-4xl { font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem); line-height: 1.1; }
h2, .text-3xl { font-size: clamp(1.75rem, 1.4rem + 1.75vw, 2.75rem); line-height: 1.2; }
h3, .text-2xl { font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem); line-height: 1.3; }
h4, .text-xl { font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem); line-height: 1.4; }
p, .text-base { font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem); line-height: 1.6; }
.text-lg { font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.375rem); line-height: 1.5; }
.text-sm { font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem); line-height: 1.5; }

/* Icon sizing utilities */
.icon-xs { width: 32px; height: auto; }
.icon-sm { width: 48px; height: auto; }
.icon-md { width: clamp(56px, 8vw, 72px); height: auto; }
.icon-lg { width: clamp(70px, 10vw, 90px); height: auto; }
.icon-xl { width: clamp(90px, 12vw, 120px); height: auto; }

/* Responsive spacing utilities */
.section-spacing { padding: clamp(2rem, 4vw, 4rem) 0; }
.content-max-width { max-width: clamp(320px, 90vw, 1200px); margin: 0 auto; }

.container {
    max-width: 880px;
    margin: 0 auto;
    padding: 1.5rem;
}

/* Global navigation */
.nav-main {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(29, 79, 167, 0.2);
}

.nav-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary);
    text-decoration: none;
}

.nav-brand:hover {
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.nav-link {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.nav-link:hover {
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: transparent;
    border-radius: 999px;
    transition: background 140ms ease, height 140ms ease;
}

.nav-link:hover::after {
    background: rgba(29, 79, 167, 0.7);
}

.nav-link[aria-current="page"]::after {
    background: var(--color-primary);
    height: 3px;
}

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

.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-primary); }
.text-white { color: #fff; }
.text-text { color: var(--color-text); }
.text-gray-700 { color: var(--color-muted); }
.text-gray-600 { color: #5b6883; }
.text-gray-500 { color: #76819a; }
.text-yellow-500 { color: #f5b700; }

.bg-primary { background-color: var(--color-primary); }
.bg-accent { background-color: var(--color-ink); }
.bg-white { background-color: #fff; }
.bg-gray-200 { background-color: #e5e1d8; }
.bg-gray-100 { background-color: #f0ede4; }

.border-primary { border-color: var(--color-primary); }
.border-accent { border-color: var(--color-ink); }
.border-primary\/20 { border-color: rgba(29, 79, 167, 0.2); }
.border-primary\/50 { border-color: rgba(29, 79, 167, 0.5); }

.rounded-lg { border-radius: 14px; }
.rounded-xl { border-radius: 18px; }

.shadow-md { box-shadow: 6px 6px 0 var(--color-shadow); }
.shadow-lg { box-shadow: 10px 10px 0 var(--color-shadow); }
.shadow-2xl { box-shadow: 14px 14px 0 var(--color-shadow); }
.shadow-soft { box-shadow: 0 12px 30px rgba(13, 47, 106, 0.08); }

.border-2 { border: 3px solid currentColor; }
.border-l-4 { border-left: 4px solid currentColor; }
.border-t-4 { border-top: 4px solid currentColor; }
.border-t-2 { border-top: 2px solid currentColor; }
.border { border: 2px solid currentColor; }
.border-dashed { border-style: dashed; }

.flex { display: flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-shrink-0 { flex-shrink: 0; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
.gap-6 { gap: 1.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }

@media (min-width: 768px) {
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.text-4xl { font-size: clamp(2.4rem, 6vw, 3rem); line-height: 1.05; }
.text-3xl { font-size: clamp(1.9rem, 5vw, 2.4rem); line-height: 1.1; }
.text-2xl { font-size: clamp(1.6rem, 4vw, 2rem); }
.text-5xl { font-size: clamp(2.6rem, 7vw, 3.4rem); line-height: 1.05; }
.text-base { font-size: 1rem; }
.text-xl { font-size: 1.25rem; }
.text-lg { font-size: 1.1rem; }
.text-sm { font-size: 0.95rem; }
.text-xs { font-size: 0.82rem; }

.font-extrabold { font-weight: 800; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 700; }
.leading-tight { line-height: 1.05; }

.py-8 { padding-top: 2.25rem; padding-bottom: 2.25rem; }
.py-6 { padding-top: 1.75rem; padding-bottom: 1.75rem; }
.py-4 { padding-top: 1.1rem; padding-bottom: 1.1rem; }
.pb-8 { padding-bottom: 2.25rem; }
.pb-2 { padding-bottom: 0.75rem; }
.pb-6 { padding-bottom: 1.5rem; }

.mt-8 { margin-top: 2.25rem; }
.mt-6 { margin-top: 1.75rem; }
.mt-4 { margin-top: 1.25rem; }
.mt-3 { margin-top: 0.9rem; }
.mt-2 { margin-top: 0.65rem; }
.mt-1 { margin-top: 0.4rem; }
.mb-4 { margin-bottom: 1.1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 0.9rem; }
.mb-2 { margin-bottom: 0.65rem; }
.my-6 { margin-top: 1.75rem; margin-bottom: 1.75rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-1 { margin-right: 0.25rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-1 { margin-left: 0.25rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.p-5 { padding: 1.4rem; }
.p-4 { padding: 1rem; }
.p-3 { padding: 0.85rem; }
.p-6 { padding: 1.5rem; }

.border-b { border-bottom: 2px solid currentColor; }
.border-t { border-top: 2px solid currentColor; }

.text-2xl .text-3xl .text-4xl,
h1, h2, h3, h4 { letter-spacing: 0.02em; }

.cta-button {
    display: inline-block;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--color-primary);
    border: 3px solid var(--color-ink);
    box-shadow: 8px 8px 0 var(--color-shadow);
    transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 10px 10px 0 var(--color-shadow);
    filter: brightness(1.06);
    text-decoration: none;
}

.cta-button.inline {
    width: auto;
    min-width: 240px;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

.card {
    background: #fff;
    border: 3px solid var(--color-ink);
    border-radius: 18px;
    box-shadow: 10px 10px 0 var(--color-shadow);
    padding: clamp(1.2rem, 2vw, 2rem);
}

.card-accent { border-color: var(--color-primary); }
.card-ink { border-color: var(--color-ink); }
.card-ghost {
    background: rgba(255,255,255,0.7);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    background: var(--color-ink);
    color: #fff;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    border: 2px solid var(--color-primary);
}

header, section, footer { background: transparent; }

blockquote {
    margin: 0;
    padding-left: 0.75rem;
    border-left: 4px solid var(--color-primary);
}

ol { padding-left: 1.2rem; }

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: var(--color-cream);
    border-top: 2px solid rgba(15, 47, 116, 0.2);
    box-shadow: 0 -8px 20px rgba(0,0,0,0.08);
    z-index: 50;
}

@media (max-width: 640px) {
    body { padding-bottom: 5.5rem; }
    .cta-button.inline { width: 100%; }
    nav.flex { flex-direction: column; gap: 0.35rem; align-items: flex-start; }
    .nav-links { row-gap: 0.2rem; }
}

@media (min-width: 640px) {
    .sm\:hidden { display: none; }
}

hr {
    border: none;
    border-top: 3px solid var(--color-primary);
    margin: 1.5rem 0;
}

.icon { font-size: 1.6rem; }

/* Simple utility to mimic Tailwind-style underline hover */
.hover\:underline:hover { text-decoration: underline; }

/* Buttons nested inside cards */
.card a { color: var(--color-ink); }
.card a:hover { text-decoration: underline; }

/* Accordion */
.accordion-item { border-bottom: 2px solid var(--color-primary); }
.accordion-header { color: var(--color-primary); }

/* Table-ish spacing for FAQ markers */
.accordion-icon { font-size: 1.2rem; font-weight: 800; }

/* Data points */
.stat {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    background: #fff;
    border: 3px solid var(--color-ink);
    border-radius: 14px;
    box-shadow: 6px 6px 0 var(--color-shadow);
    color: var(--color-primary);
}

.h-48 { height: 12rem; }

/* Hero slab with scribble underline */
.hero-slab {
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.85) 100%);
    border: 3px solid var(--color-ink);
    border-radius: 20px;
    box-shadow: 12px 12px 0 var(--color-shadow);
    padding: 1.5rem;
    position: relative;
}

.hero-slab::after {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -12px;
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--color-ink), var(--color-ink) 14px, transparent 14px, transparent 22px);
    border-radius: 4px;
    opacity: 0.45;
}

.hero-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-copy {
    max-width: 480px;
}

.hero-illustration {
    max-width: 220px;
}

.hero-illustration img {
    display: block;
    width: 100%;
    height: auto;
}

.scribble-line {
    width: 100%;
    height: 10px;
    background: repeating-linear-gradient(90deg, var(--color-ink), var(--color-ink) 16px, transparent 16px, transparent 28px);
    opacity: 0.45;
    border-radius: 4px;
}

.badge-star {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border: 3px solid var(--color-ink);
    border-radius: 999px;
    background: #fff;
    box-shadow: 6px 6px 0 var(--color-shadow);
    color: var(--color-primary);
    font-weight: 800;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 999px;
    border: 3px solid var(--color-ink);
    box-shadow: 6px 6px 0 var(--color-shadow);
    font-weight: 800;
}

/* Poster-style winter menu layout */
.menu-poster {
    margin-top: 1.75rem;
    margin-bottom: 2rem;
    padding: 1.8rem 1.5rem 2.4rem;
    border: 4px solid var(--color-ink);
    border-radius: 26px;
    box-shadow: 16px 16px 0 var(--color-shadow);
    background: rgba(249, 244, 232, 0.96);
    position: relative;
}

.menu-poster-header {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-primary);
}

.menu-poster-title {
    font-size: clamp(2.6rem, 7vw, 3.4rem);
    margin: 0;
    line-height: 1.05;
}

.menu-poster-subtitle {
    font-size: 1.15rem;
    color: var(--color-ink);
    margin: 0.2rem 0 0.9rem;
}

.menu-poster-divider {
    width: 100%;
    height: 4px;
    margin: 0.75rem auto 0;
    background: repeating-linear-gradient(
        90deg,
        var(--color-ink),
        var(--color-ink) 18px,
        transparent 18px,
        transparent 30px
    );
    border-radius: 4px;
    opacity: 0.55;
}

.menu-poster-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

.menu-illustration {
    max-width: 190px;
}

.menu-illustration img {
    display: block;
    width: 100%;
    height: auto;
}

.menu-illustration.center {
    margin-left: auto;
    margin-right: auto;
}

.menu-illustration-right {
    max-width: 180px;
    margin-left: auto;
}

.menu-illustration-right img {
    width: 100%;
    height: auto;
    display: block;
}

.menu-column {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.menu-section-label {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0;
    line-height: 1;
}

.menu-section-tagline {
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted);
    margin-top: 0.5rem;
}

.menu-section-underline {
    width: 100%;
    height: 3px;
    margin-top: 0.5rem;
    background: repeating-linear-gradient(
        90deg,
        var(--color-ink),
        var(--color-ink) 14px,
        transparent 14px,
        transparent 24px
    );
    border-radius: 4px;
    opacity: 0.55;
}

.menu-order-box {
    background: var(--color-primary);
    color: #fff;
    border-radius: 22px;
    border: 4px solid var(--color-ink);
    padding: 1.5rem 1.4rem 1.8rem;
    box-shadow: 12px 12px 0 var(--color-shadow);
}

.menu-order-label {
    font-size: 1.4rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 0.7rem;
}

.menu-order-note {
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.menu-order-box .cta-button {
    background: #fff;
    color: var(--color-primary);
    border-color: var(--color-ink);
    box-shadow: 8px 8px 0 var(--color-shadow);
}

.menu-order-box .cta-button:hover {
    filter: brightness(1.02);
}

.menu-price-bubble {
    position: absolute;
    bottom: 1.5rem;
    left: 1.4rem;
    width: 102px;
    height: 102px;
    border-radius: 999px;
    background: var(--color-primary);
    border: 4px solid var(--color-ink);
    box-shadow: 10px 10px 0 var(--color-shadow);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.25rem;
}

.menu-price-main {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.menu-price-note {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 0.15rem;
}

.menu-price-note strong {
    display: block;
}

.menu-favorite-tag {
    display: inline-flex;
    align-items: center;
    margin-left: 0.35rem;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    border: 2px dashed var(--color-primary);
    background: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.menu-favorite-tag::before {
    content: "★";
    color: var(--color-primary);
    margin-right: 0.25rem;
}

.hero-home-heading {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-primary);
    margin: 0;
    line-height: 1;
}

.hero-home-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    color: var(--color-ink);
    margin: 0.5rem 0 1.1rem;
}

@media (min-width: 768px) {
    .menu-poster-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        align-items: flex-start;
    }

    .hero-layout {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .hero-copy {
        text-align: left;
    }

    .hero-slab {
        text-align: left;
    }
}

/* ===== ANIMATIONS & TRANSITIONS ===== */

/* Keyframe animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse-subtle {
    0%, 100% {
        transform: translateY(-2px) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.02);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation utility classes */
.animate-fade-in {
    animation: fade-in 0.6s ease-out backwards;
}

.animate-fade-in-down {
    animation: fade-in-down 0.6s ease-out backwards;
}

.animate-slide-in-left {
    animation: slide-in-left 0.6s ease-out backwards;
}

.animate-slide-in-right {
    animation: slide-in-right 0.6s ease-out backwards;
}

.animate-bounce-in {
    animation: bounce-in 0.5s ease-out backwards;
}

.animate-scale-in {
    animation: scale-in 0.5s ease-out backwards;
}

/* Stagger delays for sequential animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Scroll reveal - elements hidden initially until JS reveals them */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Interactive hover states */
.hover-lift {
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.hover-lift:hover {
    transform: translateY(-6px);
}

.hover-float {
    animation: float 3s ease-in-out infinite;
}

.hover-wiggle:hover {
    animation: wiggle 0.4s ease-in-out;
}

/* Enhanced component animations */
.hero-slab {
    animation: fade-in-down 0.6s ease-out;
}

.card {
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.card:hover {
    transform: translateY(-4px) rotate(0.5deg);
    box-shadow: 14px 14px 0 var(--color-shadow);
}

.cta-button:hover {
    animation: pulse-subtle 1.2s ease-in-out infinite;
}

.badge-star {
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.badge-star:hover {
    transform: scale(1.05);
    box-shadow: 8px 8px 0 var(--color-shadow);
}

.pill {
    animation: bounce-in 0.5s ease-out;
    transition: transform 180ms ease;
}

.pill:hover {
    transform: scale(1.08);
}

/* Loading state */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid var(--color-primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Focus states for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Smooth transitions for interactive elements */
button,
.cta-button,
.nav-link,
.accordion-item {
    transition: all 220ms ease;
}
