/* ===================================
   The Cafe On Cotton — Stylesheet
   Terracotta + Sand Color Palette
   =================================== */

/* --- CSS Custom Properties --- */
:root {
    --terracotta: #C1694F;
    --terracotta-dark: #A0523D;
    --terracotta-light: #D4896F;
    --sand: #F5E6D3;
    --sand-light: #FBF5EE;
    --sand-dark: #E8D5C0;
    --cream: #FFFDF8;
    --charcoal: #2C2420;
    --charcoal-light: #4A3F38;
    --warm-gray: #7A6B63;
    --warm-gray-light: #A89890;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(44, 36, 32, 0.08);
    --shadow-md: 0 4px 16px rgba(44, 36, 32, 0.1);
    --shadow-lg: 0 8px 32px rgba(44, 36, 32, 0.12);
    --shadow-xl: 0 16px 48px rgba(44, 36, 32, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* --- Typography --- */
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    font-weight: 700;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 253, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(193, 105, 79, 0.1);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--charcoal);
}

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

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-light);
    position: relative;
    padding: 4px 0;
}

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

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

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

.nav-cta-btn {
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-cta-btn:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

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

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

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

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--terracotta);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--sand-dark);
    bottom: -50px;
    left: -80px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--terracotta-light);
    top: 40%;
    left: 15%;
    animation: float 7s ease-in-out infinite;
}

.shape-4 {
    width: 80px;
    height: 80px;
    background: var(--terracotta);
    top: 20%;
    left: 30%;
    border-radius: 20%;
    animation: spin 12s linear infinite;
    opacity: 0.08;
}

.shape-5 {
    width: 120px;
    height: 120px;
    background: var(--sand-dark);
    bottom: 20%;
    right: 20%;
    border-radius: 30%;
    animation: float 9s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

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

.hero-content {
    flex: 1;
    max-width: 560px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--terracotta);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--charcoal);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-accent {
    color: var(--terracotta);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

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

.hero-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--warm-gray);
    font-size: 0.9rem;
}

.hero-info-item svg {
    color: var(--terracotta);
}

.hero-image {
    flex: 1;
    max-width: 520px;
    margin-left: auto;
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

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

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

.hero-img-accent {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 3px solid rgba(193, 105, 79, 0.2);
    pointer-events: none;
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

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

.hero-floating-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.hero-floating-card span {
    font-size: 0.8rem;
    color: var(--warm-gray);
    line-height: 1.4;
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(32px); }
    to { opacity: 1; transform: translateX(0); }
}

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

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(193, 105, 79, 0.3);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(193, 105, 79, 0.4);
}

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

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

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

/* --- Features Strip --- */
.features-strip {
    background: var(--white);
    padding: 48px 24px;
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--sand-light);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--terracotta);
    color: var(--white);
}

.feature-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--charcoal);
}

.feature-item span {
    font-size: 0.82rem;
    color: var(--warm-gray);
    line-height: 1.4;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* --- Menu Section --- */
.menu-section {
    padding: 100px 24px;
    background: var(--cream);
    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-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-cat-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--warm-gray);
    background: var(--white);
    border: 2px solid var(--sand-dark);
    transition: var(--transition);
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--sand);
}

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

.menu-item-img {
    height: 200px;
    overflow: hidden;
}

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

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

.menu-item-body {
    padding: 20px;
}

.menu-item-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.menu-item-top h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
}

.menu-item-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--terracotta);
    background: rgba(193, 105, 79, 0.1);
    padding: 3px 8px;
    border-radius: 50px;
    white-space: nowrap;
}

.menu-item-body p {
    font-size: 0.88rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.menu-note {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 32px;
    font-size: 0.88rem;
    color: var(--warm-gray);
}

.menu-note svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

.hidden-menu {
    display: none;
}

/* --- About Section --- */
.about-section {
    padding: 100px 24px;
    background: var(--sand-light);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

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

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    z-index: 3;
    border: 4px solid var(--sand-light);
}

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

.about-geometric {
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 1;
}

.geo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--terracotta);
    opacity: 0.15;
}

.geo-square {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--sand-dark);
    border-radius: 12px;
    top: 40px;
    right: -20px;
    transform: rotate(15deg);
    opacity: 0.6;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-text {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.stat-item strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: var(--terracotta);
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 0.82rem;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 36, 32, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
}

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

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

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

.gallery-item-wide {
    grid-column: span 2;
}

/* --- Visit Section --- */
.visit-section {
    padding: 100px 24px;
    background: var(--sand-light);
    position: relative;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.visit-info {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

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

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

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

.visit-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

.visit-detail strong {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.visit-detail span {
    font-size: 0.88rem;
    color: var(--warm-gray);
    line-height: 1.5;
}

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

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* --- Contact Section --- */
.contact-section {
    padding: 100px 24px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-text {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(193, 105, 79, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray-light);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(193, 105, 79, 0.08);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.form-success.show {
    display: flex;
}

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

.form-success strong {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.form-success span {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

.contact-visual {
    position: relative;
}

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

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

.c-shape-1 {
    width: 200px;
    height: 200px;
    background: var(--terracotta);
    opacity: 0.08;
    top: -40px;
    right: -40px;
}

.c-shape-2 {
    width: 100px;
    height: 100px;
    background: var(--sand-dark);
    opacity: 0.5;
    bottom: 40px;
    left: -30px;
}

.c-shape-3 {
    width: 60px;
    height: 60px;
    background: var(--terracotta-light);
    opacity: 0.2;
    bottom: -20px;
    right: 30%;
    border-radius: 16px;
    transform: rotate(45deg);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* --- Footer --- */
.footer {
    background: var(--charcoal);
    color: var(--sand);
    padding: 64px 24px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--sand);
    margin-bottom: 16px;
}

.footer-logo svg {
    color: var(--terracotta-light);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--warm-gray-light);
    line-height: 1.7;
    max-width: 300px;
}

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

.footer-links strong {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sand);
    margin-bottom: 4px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--warm-gray-light);
    padding: 2px 0;
}

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

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

.footer-contact strong {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sand);
    margin-bottom: 4px;
}

.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--warm-gray-light);
}

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

.footer-contact svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    font-size: 0.82rem;
    color: var(--warm-gray);
}

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

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

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

    .hero-image {
        max-width: 400px;
        margin-top: 40px;
    }

    .hero-floating-card {
        left: 0;
    }

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

    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }

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

    .gallery-item-wide {
        grid-column: span 1;
    }

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

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

    .contact-visual {
        max-width: 500px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 253, 248, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 24px 60px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
        display: inline-flex;
    }

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

    .menu-categories {
        gap: 8px;
    }

    .menu-cat-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

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

    .gallery-item {
        height: 220px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

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

    .about-stats {
        gap: 20px;
    }
}

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

    .hero {
        padding: 90px 16px 40px;
    }

    .hero-title {
        font-size: 1.875rem;
    }

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

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

    .visit-info {
        padding: 24px;
    }
}
