:root {
    /* Vibrant Neo-Pop Palette */
    --primary: #FF2A54;
    /* Electric Pink/Red */
    --secondary: #FFD700;
    /* Cyber Yellow */
    --tertiary: #00F0FF;
    /* Cyan */
    --dark: #121212;
    --light: #F4F4F4;
    --border-color: #000000;

    /* Typography */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Structure */
    --border-thick: 4px;
    --border-radius: 12px;
    --shadow-solid: 6px 6px 0px var(--border-color);
    --shadow-hover: 10px 10px 0px var(--border-color);
    --transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    position: relative;
}

/* Background Grid Pattern */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('assets/grid-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

/* Typography elements */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5%;
    width: 110%;
    height: 30%;
    background-color: var(--tertiary);
    z-index: -1;
    transform: rotate(-2deg);
    border: 2px solid var(--border-color);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--light);
    border-bottom: var(--border-thick) solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    -webkit-text-stroke: 1px var(--dark);
    position: relative;
}

.badge {
    background-color: var(--tertiary);
    color: var(--dark);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 900;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 2px 2px 0 var(--border-color);
    transform: rotate(-5deg);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    /* keep everything vertically aligned */
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

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

.nav-order-btn {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.nav-cta-img {
    height: 150px;
    margin-top: -35px;
    margin-bottom: -35px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 0 var(--border-color));
    transition: var(--transition);
    transform-origin: center;
}

.nav-cta-img:hover {
    transform: scale(1.1) rotate(-2deg);
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
}

.hamburger-btn .bar {
    width: 35px;
    height: 5px;
    background-color: var(--dark);
    border-radius: 4px;
    transition: var(--transition);
}

.close-btn {
    display: none;
    background: none;
    border: none;
    font-size: 4rem;
    color: var(--dark);
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

/* Main Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 90px);
    align-items: center;
    padding: 2rem 5%;
    gap: 4rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center children horizontally */
    text-align: center;
    /* Center the actual text */
    gap: 2rem;
    z-index: 2;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 7rem);
    color: var(--light);
    text-shadow:
        -2px -2px 0 var(--border-color),
        2px -2px 0 var(--border-color),
        -2px 2px 0 var(--border-color),
        2px 2px 0 var(--border-color),
        5px 5px 0 var(--border-color),
        6px 6px 0 var(--border-color);
}

.hero-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-order-btn:hover {
    transform: scale(1.05);
}

.hero-cta-img {
    height: clamp(160px, 22vw, 300px);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(4px 4px 0 var(--border-color));
    transition: var(--transition);
    transform-origin: center;
}

.hero-cta-img:hover {
    transform: scale(1.08) rotate(-2deg);
}

.cta-wrapper {
    margin-top: 1rem;
}

.cta-button-container {
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
}

.cta-button-container:hover {
    transform: scale(1.05) rotate(-2deg);
}

.cta-button-container:active {
    transform: scale(0.95);
}

.cta-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(4px 4px 0 var(--border-color));
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 2752 / 1536;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(8px 8px 0px rgba(0, 0, 0, 0.8));
}

.decor-image {
    position: absolute;
    width: 250px;
    z-index: 3;
    filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.8));
}

.decor-1 {
    bottom: -10%;
    left: -10%;
    transform: rotate(-15deg);
}

/* Location Section */
.location-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    background-color: var(--secondary);
    border-top: var(--border-thick) solid var(--dark);
    position: relative;
    overflow: hidden;
}

.location-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.location-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 2752 / 1536;
    height: auto;
    z-index: 2;
    filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.8));
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 2;
}

.section-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--light);
    text-shadow:
        -2px -2px 0 var(--border-color),
        2px -2px 0 var(--border-color),
        -2px 2px 0 var(--border-color),
        2px 2px 0 var(--border-color),
        4px 4px 0 var(--border-color);
}

.address-card {
    background-color: var(--light);
    border: var(--border-thick) solid var(--dark);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-solid);
    transform: rotate(1deg);
    transition: var(--transition);
}

.address-card:hover {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: var(--shadow-hover);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.icon {
    font-size: 2rem;
}

.address-line1 {
    font-weight: 900;
    font-size: 1.5rem;
}

.address-line2 {
    font-weight: 600;
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 2rem;
    padding-left: 3rem;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--dark);
    color: var(--light);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    margin-bottom: 2rem;
    font-weight: 700;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #00FF00;
    border-radius: 50%;
}

.neo-button {
    display: inline-block;
    width: 100%;
    background-color: var(--primary);
    color: var(--light);
    text-decoration: none;
    text-align: center;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    border: var(--border-thick) solid var(--dark);
    border-radius: var(--border-radius);
    box-shadow: 4px 4px 0 var(--border-color);
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.neo-button:hover {
    background-color: var(--tertiary);
    color: var(--dark);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--border-color);
}

.neo-button:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0 var(--border-color);
}

.small-btn {
    width: auto;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    background-color: var(--light);
    border-top: var(--border-thick) solid var(--dark);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-card {
    background-color: var(--secondary);
    border: var(--border-thick) solid var(--dark);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-solid);
    transform: rotate(-1deg);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: var(--shadow-hover);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
}

.polaroid-wrapper {
    position: relative;
}

.polaroid {
    background-color: white;
    padding: 15px 15px 50px 15px;
    border: var(--border-thick) solid var(--dark);
    box-shadow: var(--shadow-solid);
    width: 250px;
    position: relative;
    z-index: 2;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 4;
}

.offset-polaroid {
    position: absolute;
    top: 40px;
    left: 120px;
    transform: rotate(10deg);
    z-index: 1;
}

.offset-polaroid:hover {
    transform: rotate(0deg) scale(1.05) translateY(-20px);
    z-index: 4;
}

.polaroid-image {
    width: 100%;
    height: 250px;
    background-color: #ddd;
    border: 2px solid var(--dark);
    display: block; /* Reserve space even if image fails/loads late */
}

.bg-placeholder-1 {
    background-image: url('assets/story-1.jpg');
    background-size: cover;
    background-position: center;
}

.bg-placeholder-2 {
    background-image: url('assets/story-2.png');
    background-size: cover;
    background-position: center;
}

.polaroid-caption {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    /* Adds to the Pop Art vibe */
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Instagram Feed Section */
.instagram-section {
    padding: 6rem 5%;
    background-color: var(--dark);
    color: var(--light);
    border-top: var(--border-thick) solid var(--dark);
}

.instagram-section .section-title {
    color: var(--light);
}

.section-header {
    display: flex;
    align-items: flex-end;
    margin-bottom: 3rem;
}

/* Menu Section */
.menu-section {
    padding: 6rem 5%;
    background-color: var(--light);
    border-top: var(--border-thick) solid var(--dark);
    overflow: hidden;
}

.menu-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 4rem;
    color: var(--dark);
    font-family: var(--font-heading);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 2rem 1.5rem 3rem;
    border-radius: 4px;
    min-height: 140px;
    /* Brush stroke effect simulation */
    clip-path: polygon(0% 15%, 100% 0%, 98% 85%, 2% 100%);
    transition: var(--transition);
}

.menu-item:hover {
    transform: scale(1.02);
}

/* Background Colors */
.yellow-bg {
    background-color: #F8E71C;
}

.red-bg {
    background-color: #D0021B;
}

.blue-bg {
    background-color: #0081C6;
}

.menu-info {
    flex: 1;
    padding-right: 2rem;
    color: var(--dark);
    z-index: 2;
}

.red-bg .menu-info,
.blue-bg .menu-info {
    color: white;
}

.menu-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.menu-info p {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Highlight specific text (like the Kids menu) */
.text-highlight h3 span,
.text-highlight p span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 2px;
}

.menu-image {
    position: relative;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    z-index: 3;
}

.menu-image img {
    width: 150%;
    height: auto;
    aspect-ratio: 2752 / 1536;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.3));
}

.price-tag {
    position: absolute;
    top: -10px;
    right: -20px;
    background-color: var(--dark);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
    transform: rotate(10deg);
}

@media screen and (max-width: 968px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 5%;
    background-color: var(--secondary);
    border-top: var(--border-thick) solid var(--dark);
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: var(--border-thick) solid var(--dark);
    box-shadow: var(--shadow-solid);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-placeholder {
    padding: 4rem;
    background-color: var(--light);
    border: var(--border-thick) dashed var(--dark);
    border-radius: var(--border-radius);
    color: var(--dark);
}

/* Footer Section */
.site-footer {
    background-color: var(--primary);
    color: white;
    border-top: var(--border-thick) solid var(--dark);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 0 5% 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    color: white;
    -webkit-text-stroke: 1px var(--dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--dark);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--light);
    color: var(--dark);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    border: 2px solid var(--dark);
    border-radius: 50%;
    box-shadow: 2px 2px 0 var(--dark);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--tertiary);
    transform: translateY(-5px);
    box-shadow: 4px 6px 0 var(--dark);
}

.footer-bottom {
    background-color: var(--dark);
    color: var(--light);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes float-rotate {
    0% {
        transform: translateY(0px) rotate(-15deg);
    }

    50% {
        transform: translateY(-20px) rotate(-10deg);
    }

    100% {
        transform: translateY(0px) rotate(-15deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float-rotate 5s ease-in-out infinite;
    animation-delay: 1s;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Scroll reveal utility */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1300px) {
    .nav-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .badge {
        font-size: 0.7rem;
        transform: rotate(0deg);
        /* Remove rotation to save space */
    }
}

@media screen and (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 968px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 5%;
    }

    .logo {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .badge {
        font-size: 0.6rem;
    }

    .nav-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .hamburger-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 110dvh;
        min-height: 110dvh;
        background-color: var(--light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 999;
        transform: translateY(-100%);
        /* start hidden */
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .close-btn {
        display: block;
    }

    .nav-link {
        font-size: 1.8rem;
        font-weight: 900;
        color: var(--dark);
    }

    .nav-link::before {
        display: none;
    }

    .nav-order-btn {
        text-decoration: none;
        margin-top: 1rem;
    }

    .nav-cta-img {
        height: 160px;
        /* Much larger in the mobile overlay */
        margin-top: 0;
        margin-bottom: 0;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 4rem;
    }

    .hero-content {
        align-items: center;
        width: 100%;
        margin: 0 auto;
        padding-right: 6px;
        /* Offset the 6px thick solid shadow so the entire element group feels optically centered! */
        box-sizing: border-box;
    }

    .hero-title {
        font-size: clamp(3rem, 10vw, 4.5rem);
    }

    .hero-cta-img {
        height: clamp(120px, 35vw, 220px);
    }

    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats-grid {
        justify-content: center;
    }

    .about-visual {
        margin-top: 3rem;
    }

    .location-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 5%;
        overflow: hidden;
    }

    .location-visual {
        grid-row: 2;
        /* Move image below content on mobile */
    }

    .location-content {
        align-items: center;
    }

    .address-card {
        text-align: left;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 1.5rem;
        transform: none;
        /* Strip off rotation so corners do not clip bounding box */
    }

    .section-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        line-height: 1.1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links ul {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .menu-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        /* Remove clip path on mobile for standard box so content fits */
        clip-path: none;
        border: var(--border-thick) solid var(--dark);
    }

    .menu-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .price-tag {
        top: 0;
        right: 0;
    }

    .polaroid {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .offset-polaroid {
        position: relative;
        top: -40px;
        left: 20px;
    }

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

@media screen and (max-width: 480px) {
    .nav-brand {
        flex-direction: column;
        text-align: center;
    }

    .nav-brand .badge {
        font-size: 0.7rem;
    }

    .cta-img {
        height: 90px;
    }

    .section-header {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .address-line2 {
        padding-left: 0;
    }

    .address-line1 {
        font-size: 1.2rem;
    }

    .neo-button {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
        hyphens: auto;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
        line-height: 1.1;
    }
}