/* ========================================
   THREE SIXTY GRILLE — Custom Styles
   Terracotta + Sand Palette
   ======================================== */

/* --- CSS Variables --- */
:root {
    --terracotta: #C06C44;
    --terracotta-dark: #A85533;
    --terracotta-light: #D4896A;
    --sand: #E8D5C4;
    --sand-light: #F2E8DF;
    --sand-dark: #C4A882;
    --cream: #FBF7F4;
    --charcoal: #2A2219;
    --charcoal-light: #4A3F35;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(42, 34, 25, 0.08);
    --shadow-md: 0 8px 30px rgba(42, 34, 25, 0.12);
    --shadow-lg: 0 20px 60px rgba(42, 34, 25, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(251, 247, 244, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--charcoal);
}

.logo .dot {
    color: var(--terracotta);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--charcoal-light);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--terracotta);
}

.nav-cta {
    background: var(--terracotta) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

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

.nav-cta:hover {
    background: var(--terracotta-dark) !important;
    transform: translateY(-2px);
}

/* --- Menu Toggle --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
    display: block;
}

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

.menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

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

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--charcoal);
}

.mobile-link {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
}

.mobile-link:hover {
    color: var(--terracotta);
}

.mobile-cta {
    background: var(--terracotta);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
    background: var(--cream);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--sand);
    top: -200px;
    right: -100px;
    opacity: 0.6;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--terracotta);
    opacity: 0.08;
    bottom: 10%;
    left: -50px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--terracotta-light);
    opacity: 0.15;
    top: 30%;
    left: 10%;
    border-radius: 20% 80% 40% 60% / 50% 30% 70% 50%;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
}

.tag-line {
    width: 40px;
    height: 2px;
    background: var(--terracotta);
}

.hero-headline {
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.hero-headline .highlight {
    color: var(--terracotta);
    position: relative;
    display: inline-block;
}

.hero-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    right: 0;
    height: 0.15em;
    background: var(--sand);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal-light);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(192, 108, 68, 0.3);
}

.btn-secondary {
    background: var(--charcoal);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--charcoal-light);
    transform: translateY(-3px);
}

.btn-terracotta {
    background: var(--terracotta);
    color: var(--white);
}

.btn-terracotta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-3px);
}

.btn-sand {
    background: var(--sand);
    color: var(--charcoal);
}

.btn-sand:hover {
    background: var(--sand-dark);
    transform: translateY(-3px);
}

.btn-outline-sand {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--sand-dark);
}

.btn-outline-sand:hover {
    background: var(--sand);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--terracotta);
    border-radius: var(--radius-md);
    z-index: -1;
}

.hero-floating-card {
    position: absolute;
    bottom: 3rem;
    left: -3rem;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

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

.floating-icon {
    width: 48px;
    height: 48px;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
}

.floating-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--charcoal-light);
}

.floating-value {
    display: block;
    font-weight: 700;
    color: var(--charcoal);
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--charcoal-light);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--terracotta), transparent);
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* --- Features Strip --- */
.features-strip {
    background: var(--charcoal);
    padding: 3rem 2rem;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.feature-title {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.feature-desc {
    display: block;
    font-size: 0.875rem;
    color: var(--sand-dark);
}

.feature-divider {
    width: 1px;
    height: 40px;
    background: var(--charcoal-light);
    flex-shrink: 0;
}

/* --- Section Shared --- */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.text-terracotta {
    color: var(--terracotta);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    max-width: 560px;
    line-height: 1.7;
}

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

.section-header--center .section-desc {
    margin: 0 auto;
}

/* --- Menu Section --- */
.menu-section {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.menu-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--sand);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    opacity: 0.4;
    pointer-events: none;
}

.menu-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 4rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.menu-card--featured {
    grid-column: span 7;
}

.menu-card:not(.menu-card--featured) {
    grid-column: span 5;
}

.menu-card--sand {
    background: var(--sand-light);
}

.menu-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--terracotta);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.menu-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.menu-card--featured .menu-card-image {
    height: 320px;
}

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

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}

.menu-card-content {
    padding: 1.5rem;
}

.menu-card-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.menu-card-content p {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.6;
}

.menu-cta {
    text-align: center;
    padding: 3rem;
    background: var(--sand-light);
    border-radius: var(--radius-lg);
}

.menu-cta p {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    margin-bottom: 1.5rem;
}

/* --- About Section --- */
.about-section {
    padding: 8rem 2rem;
    background: var(--white);
    overflow: hidden;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 6px solid var(--white);
}

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

.about-geometric {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.geo-circle {
    width: 120px;
    height: 120px;
    border: 3px solid var(--terracotta);
    border-radius: 50%;
    position: absolute;
    top: -30px;
    right: -30px;
    opacity: 0.5;
}

.geo-square {
    width: 80px;
    height: 80px;
    background: var(--sand);
    position: absolute;
    bottom: -20px;
    left: -20px;
    border-radius: var(--radius-sm);
    transform: rotate(15deg);
    opacity: 0.7;
}

.about-content {
    max-width: 520px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--sand);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--terracotta);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--charcoal-light);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    background: var(--sand);
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 8rem 2rem;
    background: var(--cream);
}

.gallery-container {
    max-width: 1280px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.5rem;
    margin-top: 4rem;
}

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

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 34, 25, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

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

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

/* --- CTA Section --- */
.cta-section {
    padding: 8rem 2rem;
    background: var(--terracotta);
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--terracotta-dark);
    opacity: 0.3;
    top: -150px;
    left: -100px;
}

.cta-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--sand);
    opacity: 0.15;
    bottom: -80px;
    right: 10%;
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.text-sand {
    color: var(--sand);
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-circle {
    width: 280px;
    height: 280px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 20s linear infinite;
}

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

.cta-inner-circle {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    animation: spin 20s linear infinite reverse;
}

/* --- Contact Section --- */
.contact-section {
    padding: 8rem 2rem;
    background: var(--white);
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--sand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal-light);
    margin-bottom: 0.25rem;
}

.contact-value {
    display: block;
    font-size: 1.05rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-value a:hover {
    color: var(--terracotta);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 450px;
}

/* --- Footer --- */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 5rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--charcoal-light);
}

.footer-brand p {
    color: var(--sand-dark);
    margin-top: 1rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-links a {
    display: block;
    color: var(--sand-dark);
    padding: 0.35rem 0;
    font-size: 0.95rem;
}

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

.footer-contact p {
    color: var(--sand-dark);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-phone {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--terracotta-light);
    font-weight: 600;
}

.footer-phone:hover {
    color: var(--sand);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.875rem;
    color: var(--charcoal-light);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-floating-card {
        left: 1rem;
        bottom: 2rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-images {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .menu-card--featured {
        grid-column: span 12;
    }

    .menu-card:not(.menu-card--featured) {
        grid-column: span 6;
    }

    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-visual {
        display: none;
    }

    .cta-actions {
        justify-content: center;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 350px;
    }

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

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

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

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

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 7rem 1.5rem 4rem;
    }

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

    .features-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .feature-divider {
        display: none;
    }

    .feature-item {
        width: 100%;
    }

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

    .menu-card--featured,
    .menu-card:not(.menu-card--featured) {
        grid-column: span 1;
    }

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

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

    .gallery-item {
        height: 220px;
    }

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

    .stat-divider {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .hero-floating-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 1.5rem;
        animation: none;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

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