/* ===================================
   242 Pizza Co. - Premium Styles
   Color Palette:
   Dark:  #1a1a1a
   Gold:  #c9a96e
   Cream: #f5f0e8
   White: #ffffff
   =================================== */

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

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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #f5f0e8;
    background-color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: #c9a96e;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #dfc291;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #f5f0e8;
    margin-bottom: 20px;
}

.section-sub {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.6);
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.7;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: #c9a96e;
    margin: 0 auto;
}

/* ===================================
   Top Bar
   =================================== */
.top-bar {
    background: #111;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    padding: 8px 0;
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.5);
}

.top-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.top-bar-contact a:hover {
    color: #c9a96e;
}

.top-bar-contact svg {
    flex-shrink: 0;
}

/* ===================================
   Navigation
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(26, 26, 26, 0.97);
    padding: 12px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-logo-img {
    height: 64px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.3));
}

.nav.scrolled .nav-logo-img {
    height: 52px;
}

.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #f5f0e8;
    letter-spacing: 1px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.nav-logo-text span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a96e;
    margin-top: 2px;
}

.nav-logo:hover .nav-logo-text {
    color: #c9a96e;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-contact {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(201, 169, 110, 0.2);
}

.nav-contact a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: rgba(245, 240, 232, 0.5);
    transition: color 0.3s ease;
    line-height: 1.5;
}

.nav-contact a:hover {
    color: #c9a96e;
}

.nav.scrolled .nav-logo-text {
    font-size: 1.15rem;
}

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

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f5f0e8;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c9a96e;
}

.nav-links a.active {
    color: #c9a96e;
}

.nav-cta {
    background: #c9a96e !important;
    color: #1a1a1a !important;
    padding: 10px 24px;
    border-radius: 2px;
    font-weight: 600 !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
    background: #dfc291 !important;
    color: #1a1a1a !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f5f0e8;
    transition: all 0.3s ease;
}

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

/* ===================================
   Buttons (Premium System)
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: 2px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #c9a96e;
    color: #1a1a1a;
    border-color: #c9a96e;
}

.btn-primary:hover {
    background: #dfc291;
    border-color: #dfc291;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.25);
}

.btn-outline {
    background: transparent;
    color: #c9a96e;
    border-color: #c9a96e;
}

.btn-outline:hover {
    background: #c9a96e;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.25);
}

.cta-sub {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.5);
    margin-top: 16px;
}

.cta-sub a {
    color: #c9a96e;
    font-weight: 500;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #1a1a1a;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.45;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(26, 26, 26, 0.6) 0%, rgba(26, 26, 26, 0) 75%),
        linear-gradient(
            180deg,
            rgba(26, 26, 26, 0.8) 0%,
            rgba(26, 26, 26, 0.62) 40%,
            rgba(26, 26, 26, 0.7) 70%,
            rgba(26, 26, 26, 0.9) 100%
        );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.hero-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 400;
    color: #f5f0e8;
    letter-spacing: 2px;
    margin-bottom: 8px;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-title span {
    display: block;
    color: #c9a96e;
    font-weight: 700;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

/* Hero Trust Bar */
.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 60px;
    animation: fadeInUp 1s ease 1s both;
}

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

.trust-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #c9a96e;
    line-height: 1;
}

.trust-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
    margin-top: 4px;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 169, 110, 0.3);
}

/* Legacy hero buttons (for about, menu CTA pages) */
.hero-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    background: #c9a96e;
    padding: 16px 40px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #dfc291;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.25);
}

.hero-btn-outline {
    background: transparent;
    color: #c9a96e;
    border: 2px solid #c9a96e;
}

.hero-btn-outline:hover {
    background: #c9a96e;
    color: #1a1a1a;
}

/* ===================================
   About Preview (Homepage)
   =================================== */
.about-preview {
    padding: 120px 0;
    background: #f5f0e8;
    color: #1a1a1a;
}

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

.about-preview-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #1a1a1a;
    margin-top: 12px;
}

.about-preview-text p {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-top: 20px;
}

.text-link {
    display: inline-block;
    margin-top: 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c9a96e;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #dfc291;
    letter-spacing: 2px;
}

.about-preview-img {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-preview-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Menu Preview (Homepage)
   =================================== */
.menu-preview {
    padding: 120px 0;
    background: #1a1a1a;
}

.menu-preview .section-sub {
    color: rgba(245, 240, 232, 0.6);
}

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

.menu-preview-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.menu-preview-card:hover {
    transform: translateY(-4px);
}

.menu-preview-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(201, 169, 110, 0.3);
    transition: border-color 0.3s ease;
}

.menu-preview-card:hover .menu-preview-img {
    border-color: #c9a96e;
}

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

.menu-preview-card h3 {
    font-size: 1.3rem;
    color: #f5f0e8;
    margin-bottom: 8px;
}

.menu-preview-card p {
    font-size: 0.83rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.6;
    margin-bottom: 8px;
}

.menu-preview-card .menu-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #c9a96e;
}

/* ===================================
   Values Section (Homepage)
   =================================== */
.values-section {
    padding: 60px 0 80px;
    background: #f5f0e8;
    color: #1a1a1a;
}

.values-section .section-header h2 {
    color: #1a1a1a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.value-card-premium {
    padding: 40px 32px;
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.value-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #c9a96e;
}

.value-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    margin-bottom: 20px;
}

.value-card-premium h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.value-card-premium p {
    font-size: 0.85rem;
    color: #5a5a5a;
    line-height: 1.7;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 120px 0;
    background: #1a1a1a;
}

.book-steps {
    padding: 60px 0;
    background: #1a1a1a;
}

.services .section-header h2 {
    color: #f5f0e8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(245, 240, 232, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(201, 169, 110, 0.4);
}

.service-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid #c9a96e;
    border-radius: 50%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #c9a96e;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    color: #f5f0e8;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
}

/* Service Types Tags */
.services-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.service-type {
    padding: 10px 24px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.service-type:hover {
    border-color: #c9a96e;
    color: #c9a96e;
}

/* ===================================
   Testimonial Section
   =================================== */
.testimonial-section {
    padding: 100px 0;
    background: #f5f0e8;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 40px;
}

.testimonial-stars {
    font-size: 1.3rem;
    color: #c9a96e;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.testimonial-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 500;
    font-style: italic;
    color: #2a2a2a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-card cite {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c9a96e;
}

/* ===================================
   Contact CTA Section (Homepage)
   =================================== */
.contact-cta {
    padding: 100px 0;
    background: #1a1a1a;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.contact-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-cta-text h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #f5f0e8;
    margin-bottom: 16px;
}

.contact-cta-text p {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
}

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

.contact-cta-actions .btn {
    justify-content: center;
    text-align: center;
}

/* ===================================
   Book Page Sections
   =================================== */
.book-contact {
    padding: 60px 0;
    background: #f5f0e8;
}

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

.book-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 32px 24px;
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    color: #1a1a1a;
}

.book-contact-card:hover {
    border-color: #c9a96e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
}

.book-contact-card strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.book-contact-card span {
    font-size: 0.85rem;
    color: #6a6a6a;
}

.book-form-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.book-form-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.book-form-section .section-sub {
    color: rgba(245, 240, 232, 0.6);
}

/* ===================================
   Square Payment Card
   =================================== */
#card-container {
    min-height: 90px;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 6px;
}

#card-errors {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 8px;
    min-height: 0;
}

.order-submit.processing {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Tip Selector */
.cart-tip-row {
    flex-direction: column;
    gap: 8px;
}

.tip-selector {
    display: flex;
    gap: 6px;
}

.tip-btn {
    flex: 1;
    padding: 6px 4px;
    background: transparent;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 4px;
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tip-btn:hover {
    border-color: #c9a96e;
    color: #f5f0e8;
}

.tip-btn.active {
    background: #c9a96e;
    border-color: #c9a96e;
    color: #1a1a1a;
    font-weight: 600;
}

.cart-tip-amount {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.5);
}

.cart-tip-custom {
    padding: 4px 0 8px;
}

.cart-tip-custom input {
    width: 100%;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 4px;
    color: #f5f0e8;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
}

.cart-tip-custom input:focus {
    outline: none;
    border-color: #c9a96e;
}

/* ===================================
   Footer (Premium Grid)
   =================================== */
.footer {
    padding: 60px 0 32px;
    background: #111;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    margin-bottom: 24px;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 12px;
    filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.4));
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #c9a96e;
}

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

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 8px;
}

.footer-col a,
.footer-col span {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.5);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #c9a96e;
}

.footer-careers {
    margin-top: 12px;
    display: inline-block;
    color: #c9a96e !important;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Legacy footer (for pages still using old structure) */
.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c9a96e;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.3);
    letter-spacing: 0.5px;
}

/* ===================================
   About Section (About Page)
   =================================== */
.about {
    padding: 80px 0 60px;
    background: #f5f0e8;
    color: #1a1a1a;
}

.about .section-label {
    color: #c9a96e;
}

.about .section-header h2 {
    color: #1a1a1a;
}

.about-content {
    display: grid;
    gap: 60px;
}

.about-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-scripture {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    color: #2a2a2a;
    border-left: 3px solid #c9a96e;
    padding-left: 24px;
    margin-bottom: 28px;
    text-align: left;
}

.about-scripture cite {
    display: block;
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c9a96e;
    margin-top: 12px;
}

/* About Page - Name Section */
.about-name {
    padding: 100px 0;
    background: #1a1a1a;
}

.about-name-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-name-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #f5f0e8;
    margin-top: 12px;
}

.about-name-text p {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.8;
    margin-top: 16px;
}

.about-name-text em {
    color: #c9a96e;
    font-style: italic;
}

.about-name-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-name-logo img {
    max-width: 200px;
    filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.5))
           drop-shadow(0 0 30px rgba(201, 169, 110, 0.12));
}

/* About Page - Values Section */
.about-values-section {
    padding: 100px 0;
    background: #f5f0e8;
    color: #1a1a1a;
}

.about-values-section .section-header h2 {
    color: #1a1a1a;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-color: #c9a96e;
}

.value-icon {
    font-size: 1.5rem;
    color: #c9a96e;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.35rem;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.85rem;
    color: #5a5a5a;
    line-height: 1.7;
}

/* ===================================
   Page Hero (Inner Pages)
   =================================== */
.page-hero {
    position: relative;
    padding: 110px 0 40px;
    text-align: center;
    background: #1a1a1a;
    overflow: hidden;
}

.page-hero-short {
    padding: 100px 0 30px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.9) 100%);
}

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

.page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #f5f0e8;
    margin-top: 12px;
}

.highlight-242 {
    color: #c9a96e;
    font-style: italic;
}

.page-hero-sub {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.6);
    margin-top: 16px;
    letter-spacing: 1px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.page-cta {
    padding: 100px 0;
    background: #1a1a1a;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.page-cta h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #f5f0e8;
    margin-bottom: 12px;
}

.page-cta p {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.6);
}

/* ===================================
   Menu Section (Menu Page)
   =================================== */
.menu {
    padding: 60px 0 120px;
    background: #1a1a1a;
}

.menu-category {
    margin-bottom: 64px;
}

.menu-category-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #c9a96e;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.menu-category-title .line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: rgba(201, 169, 110, 0.3);
}

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

.menu-item {
    background: rgba(245, 240, 232, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.menu-item:hover {
    border-color: rgba(201, 169, 110, 0.4);
    background: rgba(245, 240, 232, 0.07);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.menu-item-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.menu-item-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent);
}

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

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

.menu-item-body {
    padding: 24px 24px 28px;
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.menu-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #c9a96e;
    border-radius: 50%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #c9a96e;
    flex-shrink: 0;
}

.menu-item-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f5f0e8;
    flex: 1;
}

.menu-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #c9a96e;
}

.menu-desc {
    font-size: 0.83rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
}

.menu-addon {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c9a96e;
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 5px 12px;
    border-radius: 2px;
}

.menu-note {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.4);
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

/* Add-Ons Grid */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.7);
}

.addon-price {
    color: #c9a96e;
    font-weight: 500;
}

/* Knots & Drinks List */
.menu-list {
    max-width: 760px;
    margin: 0 auto;
}

.menu-list-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.menu-list-item:last-child {
    border-bottom: none;
}

.menu-list-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f5f0e8;
    margin-bottom: 4px;
}

.menu-list-qty {
    color: #f5f0e8;
    font-weight: 400;
}

.menu-list-info p {
    font-size: 0.83rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.6;
}

.menu-list-item .menu-price {
    white-space: nowrap;
}

/* 242 Family Pack Banner */
.family-pack {
    margin: 72px auto;
    max-width: 760px;
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.02));
    text-align: center;
}

.family-pack-inner {
    padding: 48px 32px;
}

.family-pack-inner h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #f5f0e8;
    margin: 12px 0 8px;
}

.family-pack-inner p {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 16px;
}

.family-pack-price {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #c9a96e;
    line-height: 1;
    margin-bottom: 28px;
}

/* Neapolitan Intro (Menu Page) */
.neapolitan-intro {
    padding: 100px 0;
    background: #f5f0e8;
    color: #1a1a1a;
}

.neapolitan-compact {
    padding: 60px 0 40px;
}

.neapolitan-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.neapolitan-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #1a1a1a;
}

.neapolitan-text p {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-top: 16px;
}

.neapolitan-text strong {
    color: #1a1a1a;
}

.neapolitan-details {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
}

.neo-detail {
    text-align: center;
}

.neo-detail-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c9a96e;
    line-height: 1;
}

.neo-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6a6a6a;
    margin-top: 8px;
}

/* Allergen Tags */
.menu-allergens,
.order-card-allergens {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.allergen-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
    background: rgba(201, 169, 110, 0.1);
    color: rgba(201, 169, 110, 0.7);
    border: 1px solid rgba(201, 169, 110, 0.15);
}

/* ===================================
   Forms
   =================================== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #f5f0e8;
    background: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 2px;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 240, 232, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c9a96e;
    background: rgba(245, 240, 232, 0.09);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #f5f0e8;
}

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

.order-submit {
    display: block;
    width: 100%;
    padding: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    background: #c9a96e;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.order-submit:hover {
    background: #dfc291;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

/* ===================================
   Order System
   =================================== */
.order-system {
    padding: 60px 0 100px;
    background: #1a1a1a;
}

.order-mode-toggle {
    display: flex;
    gap: 0;
    max-width: 300px;
    margin: 0 auto 48px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.mode-btn {
    flex: 1;
    padding: 14px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mode-btn.active {
    background: #c9a96e;
    color: #1a1a1a;
}

.order-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.order-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #c9a96e;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.order-category-title:not(:first-child) {
    margin-top: 48px;
}

.order-menu-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(245, 240, 232, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.order-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
    background: rgba(245, 240, 232, 0.06);
}

.order-card-img {
    width: 100px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.order-card-info {
    flex: 1;
    min-width: 0;
}

.order-card-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.order-card-top h3 {
    font-size: 1.1rem;
    color: #f5f0e8;
}

.order-card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #c9a96e;
    flex-shrink: 0;
}

.order-card-desc {
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.6;
}

.add-to-cart-btn {
    margin-top: 12px;
    padding: 8px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    background: #c9a96e;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
    background: #dfc291;
    transform: translateY(-1px);
}

/* Compact cards (Knots & Drinks) */
.order-menu-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.order-card-compact {
    flex-direction: column;
    gap: 0;
}

.order-card-qty {
    color: rgba(245, 240, 232, 0.4);
    font-weight: 400;
}

/* Family Pack order card */
.order-family-pack {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 28px;
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.02));
}

.order-family-pack-info h3 {
    font-size: 1.35rem;
    color: #f5f0e8;
    margin-bottom: 6px;
}

.order-family-pack-info p {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.6;
    max-width: 460px;
}

.order-family-pack-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.order-family-pack-action .order-card-price {
    font-size: 1.6rem;
}

/* Cart Sidebar */
.cart-sidebar {
    position: sticky;
    top: 90px;
    background: rgba(245, 240, 232, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.cart-header h3 {
    font-size: 1.2rem;
    color: #f5f0e8;
    margin-right: auto;
}

/* Close button — only shown when the cart is a mobile bottom sheet */
.cart-close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(245, 240, 232, 0.1);
    color: #f5f0e8;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.cart-mode-badge {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    background: rgba(201, 169, 110, 0.15);
    color: #c9a96e;
    border-radius: 2px;
}

.cart-items {
    padding: 20px 24px;
    max-height: 400px;
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    padding: 24px 0;
}

.cart-empty p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: rgba(245, 240, 232, 0.5);
}

.cart-empty span {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.3);
}

.cart-item {
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.cart-item-qty {
    font-size: 0.8rem;
    font-weight: 600;
    color: #c9a96e;
    margin-right: 4px;
}

.cart-item-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #f5f0e8;
}

.cart-item-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #c9a96e;
    flex-shrink: 0;
}

.cart-item-addons {
    display: block;
    font-size: 0.72rem;
    color: rgba(245, 240, 232, 0.4);
    margin-top: 4px;
}

.cart-item-notes {
    display: block;
    font-size: 0.72rem;
    font-style: italic;
    color: rgba(245, 240, 232, 0.3);
    margin-top: 2px;
}

.cart-item-remove {
    background: none;
    border: none;
    font-size: 0.7rem;
    color: rgba(245, 240, 232, 0.3);
    cursor: pointer;
    margin-top: 6px;
    padding: 0;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cart-item-remove:hover {
    color: #e55;
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    background: rgba(0,0,0,0.2);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: 8px;
}

.cart-total-final {
    font-size: 1rem;
    font-weight: 600;
    color: #f5f0e8;
    padding-top: 8px;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    margin-bottom: 16px;
}

.cart-total-final span:last-child {
    color: #c9a96e;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    background: #c9a96e;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: #dfc291;
}

/* Checkout form */
.checkout-form {
    margin-top: 24px;
}

.checkout-summary {
    margin-bottom: 24px;
}

.delivery-only {
    transition: all 0.3s ease;
}

.cart-totals {
    margin-bottom: 16px;
}

/* Modals */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: #222;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 6px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px 32px;
    position: relative;
}

.modal-checkout {
    max-width: 560px;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: rgba(245, 240, 232, 0.4);
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #f5f0e8;
}

.modal h2 {
    font-size: 1.5rem;
    color: #f5f0e8;
    margin-bottom: 4px;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: #c9a96e;
    margin-bottom: 24px;
}

.customizer-section {
    margin-bottom: 24px;
}

.customizer-section h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 12px;
}

.customizer-addons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

@media (max-width: 480px) {
    .customizer-addons {
        grid-template-columns: 1fr;
    }
}

.addon-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(245, 240, 232, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.7);
    transition: all 0.2s ease;
}

.addon-check:hover {
    border-color: rgba(201, 169, 110, 0.3);
}

.addon-check input {
    accent-color: #c9a96e;
}

.addon-check span:first-of-type {
    flex: 1;
}

.addon-check-price {
    color: rgba(201, 169, 110, 0.6);
    font-size: 0.8rem;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
}

.qty-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #c9a96e;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: rgba(201, 169, 110, 0.2);
}

.qty-value {
    width: 48px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: #f5f0e8;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.customizer-section textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #f5f0e8;
    background: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 2px;
    resize: vertical;
    outline: none;
}

.customizer-section textarea:focus {
    border-color: #c9a96e;
}

.customizer-section textarea::placeholder {
    color: rgba(245, 240, 232, 0.3);
}

.customizer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.customizer-total {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c9a96e;
}

.customizer-add-btn {
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    background: #c9a96e;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.customizer-add-btn:hover {
    background: #dfc291;
}

/* Checkout */
.checkout-items {
    margin-bottom: 16px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.7);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.checkout-subtotal,
.checkout-tax {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
    padding: 6px 0;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    color: #c9a96e;
    padding: 12px 0;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    margin-top: 4px;
    margin-bottom: 28px;
}

/* Global Cart Icon (all pages) */
.global-cart-icon {
    position: fixed;
    top: 0;
    right: 24px;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #c9a96e;
    color: #1a1a1a;
    padding: 10px 16px;
    border-radius: 40px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: background 0.3s ease, transform 0.2s ease;
}

.global-cart-icon:hover {
    background: #dfc291;
    color: #1a1a1a;
    transform: scale(1.05);
}

.global-cart-icon svg {
    stroke: #1a1a1a;
}

.global-cart-count {
    background: #1a1a1a;
    color: #c9a96e;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Mobile Cart Button — floating action button on collapsed layouts */
.mobile-cart-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1600;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #c9a96e;
    color: #1a1a1a;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.mobile-cart-btn:active {
    transform: scale(0.94);
}

.mobile-cart-btn.pulse {
    animation: cartPulse 0.45s ease;
}

@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.18); }
    100% { transform: scale(1); }
}

/* Hide the floating button while the bottom sheet is open (✕ closes it) */
body.cart-sheet-open .mobile-cart-btn {
    display: none !important;
}

/* Desktop keeps the sidebar cart — no floating button */
@media (min-width: 969px) {
    .mobile-cart-btn {
        display: none !important;
    }
}

.mobile-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: #1a1a1a;
    color: #c9a96e;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #c9a96e;
}

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

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

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

/* Screen-reader only (visually hidden) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Visible keyboard focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
label:focus-visible {
    outline: 2px solid #c9a96e;
    outline-offset: 2px;
}

/* Respect users who prefer less motion */
@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;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 968px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .top-bar-contact {
        gap: 12px;
    }

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

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

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

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

    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-preview-img {
        order: -1;
    }

    .about-name-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    /* Cart becomes a slide-up bottom sheet once the layout is one column */
    .cart-sidebar {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1500;
        border-radius: 16px 16px 0 0;
        transform: translateY(100%);
        transition: transform 0.4s ease;
        max-height: 75vh;
        overflow-y: auto;
        background: #222;
        border: 1px solid rgba(201, 169, 110, 0.25);
        border-bottom: none;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
    }

    .cart-sidebar.mobile-open {
        transform: translateY(0);
    }

    .cart-close {
        display: flex;
    }

    .contact-cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-cta-actions {
        align-items: center;
    }

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

    .footer-brand {
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .neapolitan-details {
        gap: 32px;
    }

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

@media (max-width: 768px) {
    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }

    /* Nav mobile */
    .nav-logo-text,
    .nav-contact {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(201, 169, 110, 0.15);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .nav-cta {
        text-align: center;
        width: 100%;
    }

    /* Global cart icon: move off the hamburger, float bottom-right like the order-page FAB */
    .global-cart-icon {
        top: auto !important;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .global-cart-count {
        position: absolute;
        top: -4px;
        right: -4px;
        border: 2px solid #c9a96e;
    }

    /* Hero trust */
    .hero-trust {
        gap: 20px;
        margin-top: 40px;
    }

    .trust-num {
        font-size: 1.4rem;
    }

    .trust-label {
        font-size: 0.6rem;
    }

    /* Sections */
    .about,
    .menu,
    .services,
    .contact-cta,
    .about-preview,
    .menu-preview,
    .about-name,
    .about-values-section,
    .values-section,
    .page-cta,
    .book-steps,
    .book-form-section,
    .testimonial-section {
        padding: 50px 0;
    }

    .menu-preview-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }

    .menu-preview-img {
        width: 160px;
        height: 160px;
    }

    .order-card {
        flex-direction: column;
    }

    .order-card-img {
        width: 100%;
        height: 140px;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .about-values {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-types {
        gap: 8px;
    }

    .service-type {
        padding: 8px 16px;
        font-size: 0.7rem;
    }

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

    .footer-links {
        gap: 20px;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Buttons */
    .btn {
        padding: 14px 28px;
        font-size: 0.75rem;
    }

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

@media (max-width: 480px) {
    .hero-trust {
        flex-direction: column;
        gap: 16px;
    }

    .trust-divider {
        width: 40px;
        height: 1px;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 0.75rem;
    }

    .menu-item-img {
        height: 160px;
    }

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

    .value-card {
        padding: 32px 20px;
    }

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

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

/* --- Ingredients Section --- */
.ingredients-section {
    padding: 100px 0;
    background: #1a1a1a;
}

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

.ingredient-item {
    background: rgba(201, 169, 110, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.8);
    letter-spacing: 0.3px;
    text-align: center;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.ingredient-item:hover {
    border-color: rgba(201, 169, 110, 0.4);
    background: rgba(201, 169, 110, 0.1);
}

@media (max-width: 768px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .ingredient-item {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

/* --- Info Strip (Hours / Service Area / Social) --- */
.info-strip {
    padding: 72px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.info-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
    justify-content: center;
    gap: 24px;
}

.info-strip-card {
    text-align: center;
    padding: 36px 24px;
    background: rgba(245, 240, 232, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: 4px;
}

.info-strip-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #f5f0e8;
    margin: 14px 0 10px;
}

.info-strip-card p {
    font-size: 0.92rem;
    color: rgba(245, 240, 232, 0.75);
    line-height: 1.7;
}

.info-strip-card p a {
    color: #c9a96e;
    text-decoration: none;
}

.info-strip-card p a:hover {
    text-decoration: underline;
}

.info-strip-note {
    display: block;
    margin-top: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.4);
}

.info-strip-note a {
    color: #c9a96e;
    text-decoration: none;
}

@media (max-width: 768px) {
    .info-strip {
        padding: 48px 0;
    }

    .info-strip-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .info-strip-card {
        padding: 28px 20px;
    }
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(201, 169, 110, 0.15);
}

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

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

@media (max-width: 768px) {
    .gallery-section {
        padding: 64px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 40px;
    }

    .gallery-item:first-child {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 10;
    }
}
