@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --primary: #1c1b19;
  --secondary: #8d7d63;
  --accent: #ddd4c6;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  --surface: #fbfaf7;
  --page: #f2f0eb;
}

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

html { scroll-behavior: smooth; }

body { font-family: var(--font-body); line-height: 1.6; color: #333; background: var(--page); }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--primary); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

header { background: var(--primary); color: white; padding: 1rem 0; }
header nav { display: flex; justify-content: space-between; align-items: center; }
header nav a { color: white; text-decoration: none; margin-left: 2rem; font-size: 0.95rem; }
header nav a:hover { opacity: 0.85; }
header .logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; }

.hero { background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), var(--primary); color: white; padding: 6rem 0; text-align: center; }
.hero h1 { font-size: 3rem; margin-bottom: 1rem; color: white; }
.hero p { font-size: 1.25rem; opacity: 0.9; }
.hero-split .hero-grid-split,
.hero-editorial-variant .hero-grid-editorial { align-items: center; }
.hero-eyebrow { margin-bottom: 1rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.75; }
.hero-grid { display: grid; gap: 2rem; align-items: end; }
.hero-grid-with-media { grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr); align-items: center; }
.hero-sidecopy { max-width: 32rem; }
.hero-sidecopy p { margin-bottom: 1rem; }
.hero-sidecopy .hero-media { margin-bottom: 1rem; }
.hero-aside-card { border-radius: 24px; padding: 1.5rem; backdrop-filter: blur(8px); }
.hero-media { min-height: 320px; border-radius: 28px; overflow: hidden; box-shadow: 0 18px 48px rgba(15, 23, 42, 0.2); }
.hero-media-image { width: 100%; height: 100%; display: block; object-fit: cover; }

.btn { display: inline-block; padding: 0.75rem 2rem; background: var(--secondary); color: white; text-decoration: none; border-radius: 6px; font-weight: 600; margin-top: 1.5rem; transition: opacity 0.2s; }
.btn:hover { opacity: 0.9; }
.btn-outline { display: inline-block; padding: 0.6rem 1.5rem; border: 2px solid var(--primary); color: var(--primary); text-decoration: none; border-radius: 6px; font-weight: 600; margin-top: 1rem; transition: all 0.2s; }
.btn-outline:hover { background: var(--primary); color: white; }

.section { padding: 4rem 0; }
.section-alt { background: #f8f8f8; }
.section-heading { max-width: 46rem; margin: 0 auto 2rem; text-align: center; }
.section-heading p { margin-top: 0.75rem; color: #666; }
.section-heading-left { margin-left: 0; text-align: left; }
.section-cta { margin-top: 2rem; text-align: center; }
.section-cta-left { text-align: left; }

.cta-banner { background: var(--primary); color: white; padding: 4rem 0; }
.cta-banner h2 { color: white; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-copy { margin-top: 1rem; color: rgba(255,255,255,0.9); }
.cta-btn { background: white; color: var(--primary); white-space: nowrap; }
.cta-inner-variant-centered { text-align: center; justify-content: center; }
.cta-inner-variant-stacked { flex-direction: column; align-items: flex-start; }
.cta-inner-variant-split { display: grid; grid-template-columns: 1fr auto; align-items: center; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 2rem; }
.feature { text-align: center; padding: 2rem; background: var(--surface); }
.feature h3 { margin-bottom: 0.5rem; }
.feature-image-wrap { margin: -2rem -2rem 1.25rem; overflow: hidden; border-radius: 18px 18px 0 0; }
.feature-image { width: 100%; height: 190px; display: block; object-fit: cover; }
.features-variant-list { grid-template-columns: 1fr; gap: 1rem; }
.feature-variant-list { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; text-align: left; }
.features-variant-compact { gap: 1rem; }
.feature-variant-compact { padding: 1.25rem; }
.testimonial-card { justify-content: space-between; }
.testimonial-quote { font-style: italic; }
.testimonial-author { margin-top: 0.75rem; font-weight: 600; }
.testimonials-variant-quotes { grid-template-columns: 1fr; }
.testimonial-variant-quotes { text-align: left; }
.testimonials-variant-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.menu-shell { display: grid; gap: 2rem; }
.menu-category { margin-bottom: 3rem; background: var(--surface); }
.menu-category h2 { border-bottom: 2px solid var(--secondary); padding-bottom: 0.5rem; margin-bottom: 1.5rem; }
.menu-category-header { margin-bottom: 1rem; }
.menu-category-description { color: #666; }
.menu-item { display: flex; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid #eee; }
.menu-item-image-wrap { width: 104px; min-width: 104px; height: 104px; overflow: hidden; border-radius: 18px; margin-right: 1rem; }
.menu-item-image { width: 100%; height: 100%; display: block; object-fit: cover; }
.menu-item-info h3 { font-size: 1.1rem; }
.menu-item-info p { color: #666; font-size: 0.9rem; }
.menu-item-price { color: var(--primary); font-weight: 600; font-size: 1.1rem; white-space: nowrap; }
.menu-item-tags { display: flex; gap: 0.5rem; margin-top: 0.25rem; }
.menu-item-tags span { background: var(--secondary); color: white; padding: 0.1rem 0.5rem; border-radius: 4px; font-size: 0.75rem; }
.diet-badge { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.7rem; font-weight: 600; margin-left: 0.5rem; vertical-align: middle; }
.diet-badge-icon { display: inline-flex; align-items: center; justify-content: center; width: 0.85rem; height: 0.85rem; border: 2px solid; border-radius: 3px; }
.diet-badge-icon span { display: block; width: 0.4rem; height: 0.4rem; border-radius: 50%; }
.diet-badge-veg { color: #16a34a; }
.diet-badge-egg { color: #ca8a04; }
.diet-badge-non-veg { color: #dc2626; }

.about-content { max-width: 800px; margin: 0 auto; }
.about-content h1, .about-content h2 { margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 1rem; font-size: 1.1rem; }
.about-layout { display: grid; gap: 2rem; align-items: start; }
.about-story-card { background: var(--surface); border-radius: 24px; padding: 2rem; }
.about-values { display: grid; gap: 1rem; }
.about-mission { margin-top: 1.25rem; }
.about-layout-variant-stacked { grid-template-columns: 1fr; }
.about-layout-variant-feature { grid-template-columns: 1.25fr 0.75fr; }
.about-story-card-variant-feature { padding: 2.5rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h3 { margin-bottom: 0.5rem; margin-top: 1rem; }
.contact-info p { margin-bottom: 1rem; color: #555; }
.contact-panel, .contact-note, .map-panel, .faq-item { border-radius: 20px; padding: 1.5rem; background: var(--surface); }
.contact-grid-variant-stacked { grid-template-columns: 1fr; gap: 1rem; }
.contact-grid-variant-cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.map-panel { text-align: center; }
.map-note, .hours-note { margin-top: 1rem; color: #777; font-style: italic; text-align: center; }

.hours-shell { display: grid; gap: 1.5rem; }
.hours-table { width: min(100%, 600px); margin: 0 auto; border-collapse: collapse; }
.hours-table td { padding: 0.75rem 0; border-bottom: 1px solid #eee; }
.hours-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.hours-card { border-radius: 18px; padding: 1.25rem; background: var(--surface); text-align: center; }
.hours-card h3 { margin-bottom: 0.5rem; }

footer { background: #222; color: #aaa; padding: 2rem 0; }
footer a { color: var(--secondary); }
.footer-inner { display: flex; justify-content: space-between; gap: 1.5rem; align-items: end; }
.footer-brand { font-family: var(--font-heading); font-size: 1.2rem; color: white; }
.footer-copy, .footer-meta { color: inherit; }
.faq-shell { max-width: 800px; }
.faq-item + .faq-item { margin-top: 1rem; }
.faq-item h3 { font-size: 1.1rem; }
.faq-item p { margin-top: 0.5rem; color: #666; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.gallery-card { overflow: hidden; border-radius: 22px; background: var(--surface); }
.gallery-image { width: 100%; height: 240px; display: block; object-fit: cover; }
.gallery-card figcaption { padding: 0.9rem 1rem 1rem; font-size: 0.85rem; color: #666; }
.gallery-empty { text-align: center; color: #666; margin-top: 1rem; }

.contact-form { margin-top: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; }
.form-group input,
.form-group textarea { padding: 0.65rem 1rem; border: 1px solid rgba(0,0,0,0.18); border-radius: 10px; font-family: var(--font-body); font-size: 0.95rem; background: #fff; color: #111; width: 100%; outline: none; transition: border-color 0.2s; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent); }
.form-group textarea { resize: vertical; }
.contact-submit-btn { margin-top: 0.25rem; }
.form-status { margin-top: 0.75rem; font-size: 0.9rem; min-height: 1.25em; }
.form-status-ok { color: #16a34a; font-weight: 600; }
.form-status-err { color: #dc2626; font-weight: 600; }

.locations-carousel { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.location-card { background: var(--surface); border-radius: 20px; padding: 1.5rem; border: 1px solid rgba(0,0,0,0.08); }
.location-card h3 { margin-bottom: 0.5rem; }
.location-address, .location-hours { color: #666; font-size: 0.9rem; }
.location-phone a { color: var(--primary); text-decoration: none; font-weight: 600; }
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.event-card { background: var(--surface); border-radius: 20px; padding: 1.5rem; border: 1px solid rgba(0,0,0,0.08); }
.event-date { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--primary); margin-bottom: 0.5rem; }
.event-card h3 { margin-bottom: 0.5rem; }
.event-cta { margin-top: 0.75rem; }
.loyalty-cta { background: var(--primary); color: #fff; padding: 4rem 0; }
.loyalty-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.loyalty-cta h2 { color: #fff; }
.loyalty-body { color: rgba(255,255,255,0.85); margin-top: 0.75rem; }
.loyalty-btn { background: #fff; color: var(--primary); white-space: nowrap; }

.reviews-section { }
.reviews-heading { margin-bottom: 2rem; }
.reviews-summary { display: flex; align-items: center; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.reviews-stars { display: inline-flex; gap: 0.05em; font-size: 1.4rem; line-height: 1; }
.reviews-stars-full { color: #f59e0b; }
.reviews-stars-half { color: #f59e0b; }
.reviews-stars-empty { color: #d1d5db; }
.reviews-avg { font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.reviews-count { font-size: 0.9rem; color: #777; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.review-card { background: var(--surface); border-radius: 20px; padding: 1.5rem; border: 1px solid rgba(0,0,0,0.07); display: flex; flex-direction: column; gap: 0.75rem; }
.review-card-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 0.05em; }
.review-card-text { font-style: italic; color: #444; font-size: 0.95rem; line-height: 1.6; margin: 0; }
.review-card-author { font-size: 0.85rem; font-weight: 600; color: #666; margin: 0; margin-top: auto; }
.review-card-author time { font-weight: 400; color: #999; }
.reviews-cta { text-align: center; margin-top: 2.5rem; }
.reviews-cta-btn { display: inline-block; }
/* Layout variant: hero-video-right */
.hero-video-right { padding: 5rem 0; }
.hero-video-right .hero-text { display: flex; flex-direction: column; justify-content: center; }
.hero-media-right { border-radius: 24px; overflow: hidden; min-height: 280px; }
.hero-media-right img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-media-placeholder { width: 100%; height: 280px; background: var(--accent, var(--secondary)); border-radius: 24px; opacity: 0.35; }

/* Layout variant: problem-solution */
.hero-problem-solution { padding: 4rem 0; }
.hero-ps-top { text-align: center; max-width: 48rem; margin: 0 auto 2.5rem; }
.hero-ps-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.hero-ps-panel { border-radius: 20px; padding: 2rem; }
.hero-ps-problem { background: color-mix(in srgb, var(--primary) 8%, white); border: 1px solid color-mix(in srgb, var(--primary) 18%, transparent); }
.hero-ps-solution { background: var(--primary); color: #fff; }
.hero-ps-solution strong, .hero-ps-solution p { color: #fff; }
.hero-ps-solution .btn { margin-top: 1.25rem; background: #fff; color: var(--primary); }

/* Layout variant: dark-cards */
.hero-dark-cards { overflow: hidden; }
.hero-dark-bg { background: var(--primary); color: #fff; padding: 5rem 0 3rem; position: relative; }
.hero-dark-bg h1 { color: #fff; }
.hero-dark-bg p { color: rgba(255,255,255,0.82); }
.hero-dark-cards-row { display: flex; gap: 1rem; padding: 2rem 20px 3rem; }
.hero-dark-card { flex: 1; border-radius: 16px; padding: 1.5rem; text-align: center; font-weight: 700; background: var(--surface); border: 1px solid rgba(0,0,0,0.08); color: var(--primary); text-decoration: none; display: flex; align-items: center; justify-content: center; }

/* Layout variant: landscape */
.hero-landscape { padding: 0; position: relative; }
.hero-landscape-bg { position: relative; min-height: 520px; display: flex; align-items: flex-end; overflow: hidden; background: var(--primary); }
.hero-landscape-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-landscape-overlay { position: relative; z-index: 1; padding: 3rem 0 4rem; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 60%, transparent 100%); width: 100%; }
.hero-landscape-overlay h1, .hero-landscape-overlay p { color: #fff; }
.hero-landscape-overlay .btn { margin-top: 1.5rem; }

/* Layout variant: search-media */
.hero-search-media { padding: 5rem 0; text-align: center; }
.hero-search-bar { display: flex; gap: 0; max-width: 540px; margin: 2rem auto 0; border-radius: 999px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
.hero-search-input { flex: 1; border: none; padding: 0.85rem 1.5rem; font-size: 0.95rem; outline: none; background: #fff; color: #333; }
.hero-search-btn { border-radius: 0; margin: 0; }
.hero-search-media-img { margin-top: 3rem; border-radius: 24px; overflow: hidden; max-height: 360px; }
.hero-search-media-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Content section layout variants */
.features-variant-services-grid { grid-template-columns: repeat(3, 1fr); }
.features-variant-three-col { grid-template-columns: repeat(3, 1fr); }
.features-variant-card-grid { grid-template-columns: repeat(3, 1fr); }
.features-variant-mobile-showcase { grid-template-columns: 1fr 1fr; align-items: center; }
.features-variant-two-col-cards { grid-template-columns: 1fr 1fr; }
.about-layout-variant-split { grid-template-columns: 1fr 1fr; }
.about-layout-variant-portrait { grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr); }
.about-layout-variant-two-col-image { grid-template-columns: 1fr 1fr; }
.cta-inner-variant-image-text { grid-template-columns: auto 1fr; gap: 3rem; }
.cta-inner-variant-landscape { grid-template-columns: 1.4fr 0.6fr; }
.gallery-grid-variant-sidebar-grid { grid-template-columns: 0.7fr 1fr; }
.gallery-grid-variant-asymmetric { grid-template-columns: 1.5fr 1fr; gap: 1.5rem; }
.gallery-grid-variant-heading-gallery { grid-template-columns: repeat(3, 1fr); }
.testimonials-variant-team-profiles { grid-template-columns: repeat(3, 1fr); }

/* ── Predefined Layout Sections ──────────────────────────────── */
.pl-placeholder { background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, white), color-mix(in srgb, var(--secondary) 14%, white)); width: 100%; height: 100%; display: block; }
.pl-sg-img, .pl-ss-timg, .pl-itc-img, .pl-tcc-img, .pl-lc-img, .pl-sg2-img, .pl-tcf-img, .pl-pt-img, .pl-ag-img, .pl-tcit-photo, .pl-cg-img, .pl-hg-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* services-grid */
.pl-sg-header { text-align: center; margin-bottom: 2.5rem; }
.pl-sg-sub { color: #666; margin-top: 0.5rem; }
.pl-sg-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pl-sg-card { border-radius: 20px; overflow: hidden; background: var(--surface); border: 1px solid rgba(0,0,0,0.06); }
.pl-sg-thumb { height: 180px; overflow: hidden; }
.pl-sg-body { padding: 1.25rem; }
.pl-sg-body h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.pl-sg-body p { font-size: 0.85rem; color: #666; }
.pl-sg-price { display: block; margin-top: 0.75rem; font-weight: 700; color: var(--primary); }
.pl-sg-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.pl-sg-feat { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: var(--surface); border-radius: 16px; border: 1px solid rgba(0,0,0,0.06); }
.pl-sg-icon { font-size: 1.1rem; color: var(--secondary); flex-shrink: 0; }
.pl-sg-feat h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.pl-sg-feat p { font-size: 0.82rem; color: #666; margin: 0; }

/* solution-split */
.pl-ss-top { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 2.5rem; }
.pl-ss-left h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.pl-ss-left p { color: #666; line-height: 1.7; }
.pl-ss-right { display: flex; flex-direction: column; gap: 1rem; }
.pl-ss-tab { padding: 1.25rem 1.5rem; border-radius: 16px; background: var(--surface); border: 1px solid rgba(0,0,0,0.07); }
.pl-ss-tab h4 { font-size: 0.9rem; margin-bottom: 0.3rem; }
.pl-ss-tab p { font-size: 0.85rem; color: #666; margin: 0; }
.pl-ss-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.pl-ss-tile { border-radius: 16px; overflow: hidden; background: var(--surface); border: 1px solid rgba(0,0,0,0.06); }
.pl-ss-tile-img { height: 140px; overflow: hidden; }
.pl-ss-tile-name { padding: 0.75rem 1rem; font-size: 0.85rem; font-weight: 600; }

/* image-text-cta */
.pl-itc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.pl-itc-img-wrap { border-radius: 24px; overflow: hidden; height: 340px; }
.pl-itc-text h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.pl-itc-sub { color: #666; margin-bottom: 1.5rem; line-height: 1.7; }
.pl-itc-icons { display: flex; gap: 1rem; margin-top: 2rem; }
.pl-itc-icon { flex: 1; text-align: center; padding: 0.9rem 1rem; border-radius: 12px; font-size: 0.85rem; font-weight: 600; border: 1.5px solid color-mix(in srgb, var(--primary) 22%, transparent); color: var(--primary); background: color-mix(in srgb, var(--primary) 5%, white); }

/* mobile-showcase */
.pl-ms-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.pl-ms-device { display: flex; justify-content: center; }
.pl-ms-phone { width: 200px; background: var(--primary); border-radius: 32px; padding: 1.25rem; box-shadow: 0 24px 48px rgba(0,0,0,0.15); min-height: 320px; }
.pl-ms-screen-hd { font-size: 0.75rem; font-weight: 700; text-align: center; color: var(--primary); background: white; padding: 0.6rem; border-radius: 12px 12px 0 0; margin-bottom: 0.5rem; }
.pl-ms-row { display: flex; justify-content: space-between; background: white; padding: 0.5rem 0.6rem; font-size: 0.72rem; border-bottom: 1px solid #f0f0f0; }
.pl-ms-content h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.pl-ms-content p { color: #666; margin-bottom: 1.5rem; }
.pl-ms-list { list-style: none; margin-bottom: 2rem; }
.pl-ms-list li { display: flex; gap: 0.75rem; padding: 0.45rem 0; font-size: 0.9rem; }
.pl-ms-chk { color: var(--secondary); font-weight: 700; flex-shrink: 0; }

/* two-col-cards */
.pl-tcc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.pl-tcc-card { border-radius: 24px; overflow: hidden; background: var(--surface); border: 1px solid rgba(0,0,0,0.06); }
.pl-tcc-thumb { height: 220px; overflow: hidden; }
.pl-tcc-body { padding: 1.5rem; }
.pl-tcc-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.pl-tcc-body p { font-size: 0.9rem; color: #666; }

/* landscape-cta */
.pl-lc-grid { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 3rem; align-items: center; }
.pl-lc-img-wrap { border-radius: 24px; overflow: hidden; height: 380px; }
.pl-lc-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.1; margin-bottom: 1.25rem; }
.pl-lc-sub { color: #666; margin-bottom: 1.5rem; line-height: 1.7; }
.pl-lc-dots { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.pl-lc-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); }
.pl-lc-dots span:nth-child(2) { background: var(--primary); }
.pl-lc-dots span:nth-child(3) { background: var(--accent); }

/* sidebar-grid */
.pl-sidebar-grid { padding: 0; overflow: hidden; }
.pl-sg2-wrap { display: grid; grid-template-columns: 280px 1fr; min-height: 420px; }
.pl-sg2-side { background: var(--primary); color: white; padding: 3rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.pl-sg2-side h2 { color: white; font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 1rem; }
.pl-sg2-side p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.6; }
.pl-sg2-cells { display: grid; grid-template-columns: repeat(3, 1fr); }
.pl-sg2-cell { aspect-ratio: 1; overflow: hidden; }

/* three-col-features */
.pl-tcf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.pl-tcf-item { border-radius: 20px; overflow: hidden; background: var(--surface); border: 1px solid rgba(0,0,0,0.06); }
.pl-tcf-img-wrap { height: 200px; overflow: hidden; }
.pl-tcf-body { padding: 1.25rem; }
.pl-tcf-body h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.pl-tcf-body p { font-size: 0.85rem; color: #666; }
.pl-tcf-price { display: block; margin-top: 0.6rem; font-weight: 700; color: var(--primary); }

/* portrait-text */
.pl-pt-grid { display: grid; grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr); gap: 4rem; align-items: center; }
.pl-pt-img-wrap { border-radius: 24px; overflow: hidden; }
.pl-pt-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.pl-pt-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1.25rem; }
.pl-pt-copy p { color: #666; line-height: 1.7; margin-bottom: 1rem; }
.pl-pt-mission { font-size: 0.9rem; }

/* asymmetric-grid */
.pl-ag-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.5rem; align-items: start; }
.pl-ag-large { border-radius: 24px; overflow: hidden; height: 400px; }
.pl-ag-right { display: flex; flex-direction: column; gap: 1.5rem; }
.pl-ag-small { border-radius: 20px; overflow: hidden; height: 200px; }
.pl-ag-text { padding: 1.5rem; background: var(--surface); border-radius: 20px; border: 1px solid rgba(0,0,0,0.07); }
.pl-ag-text h2 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.pl-ag-text p { color: #666; font-size: 0.9rem; margin-bottom: 1rem; }

/* two-col-image-text */
.pl-tcit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.pl-tcit-item { border-radius: 20px; overflow: hidden; background: var(--surface); border: 1px solid rgba(0,0,0,0.06); }
.pl-tcit-img { height: 200px; overflow: hidden; }
.pl-tcit-text { padding: 1.5rem; }
.pl-tcit-text h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.pl-tcit-text p { font-size: 0.9rem; color: #666; }

/* card-grid-3x2 */
.pl-cg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.pl-cg-card { border-radius: 18px; overflow: hidden; background: var(--surface); border: 1px solid rgba(0,0,0,0.06); }
.pl-cg-thumb { height: 160px; overflow: hidden; }
.pl-cg-body { padding: 1rem; }
.pl-cg-body h3 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; }
.pl-cg-body p { font-size: 0.8rem; color: #666; }
.pl-cg-price { display: block; margin-top: 0.5rem; font-weight: 700; font-size: 0.9rem; color: var(--primary); }

/* team-profiles */
.pl-tp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.pl-tp-card { text-align: center; padding: 2rem 1.5rem; background: var(--surface); border-radius: 24px; border: 1px solid rgba(0,0,0,0.06); }
.pl-tp-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--primary); color: white; font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.pl-tp-quote { font-style: italic; color: #444; font-size: 0.95rem; line-height: 1.7; margin-bottom: 0.75rem; }
.pl-tp-author { font-size: 0.85rem; font-weight: 600; color: var(--primary); }

/* heading-gallery */
.pl-hg-head { margin-bottom: 2.5rem; }
.pl-hg-title { font-size: clamp(2rem, 5vw, 4rem); line-height: 0.95; }
.pl-hg-sub { color: #666; margin-top: 0.75rem; }
.pl-hg-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.pl-hg-item { border-radius: 20px; overflow: hidden; height: 260px; }

/* sidebar-nav */
.pl-sn-wrap { display: grid; grid-template-columns: 220px 1fr; gap: 3rem; align-items: start; }
.pl-sn-sidebar { padding: 1.5rem; background: var(--surface); border-radius: 20px; border: 1px solid rgba(0,0,0,0.07); display: flex; flex-direction: column; gap: 0.4rem; position: sticky; top: 5rem; }
.pl-sn-link { display: block; padding: 0.6rem 0.75rem; border-radius: 10px; font-size: 0.9rem; font-weight: 600; color: #555; text-decoration: none; }
.pl-sn-link:hover { background: color-mix(in srgb, var(--primary) 8%, transparent); color: var(--primary); }
.pl-sn-content h2 { margin-bottom: 1rem; }
.pl-sn-content p { color: #666; line-height: 1.7; }

/* Predefined layouts — mobile */
@media (max-width: 768px) {
  .pl-sg-cards, .pl-sg-feats, .pl-ss-top, .pl-ss-tiles, .pl-itc-grid, .pl-itc-icons,
  .pl-ms-grid, .pl-tcc-grid, .pl-lc-grid, .pl-ss-top, .pl-tcf-grid, .pl-pt-grid,
  .pl-ag-grid, .pl-tcit-grid, .pl-cg-grid, .pl-tp-grid, .pl-hg-row, .pl-sn-wrap,
  .pl-sg2-wrap { grid-template-columns: 1fr; flex-direction: column; }
  .pl-ms-device { display: none; }
  .pl-sg2-cells { grid-template-columns: repeat(3, 1fr); }
  .pl-sg2-side { padding: 2rem; }
}


body { background: #f2f0eb; color: #1c1b19; }
h1, h2, h3, h4 { letter-spacing: -0.04em; }
header { background: rgba(251,250,247,0.92); color: #1c1b19; backdrop-filter: blur(18px); border-bottom: 1px solid rgba(28,27,25,0.08); position: sticky; top: 0; z-index: 10; }
header nav a, header .logo { color: #1c1b19; }
.hero { background: linear-gradient(180deg, #fbfaf7, #e7e2d9); color: #1c1b19; }
.hero h1, .hero p, .cta-banner h2 { color: #1c1b19; }
.hero p { color: rgba(28,27,25,0.72); }
.hero-grid { grid-template-columns: 1.05fr 0.95fr; }
.hero-aside-card { background: rgba(28,27,25,0.04); border: 1px solid rgba(28,27,25,0.08); }
.feature, .menu-category, .contact-panel, .contact-note, .map-panel, .faq-item, .about-story-card { border: 1px solid rgba(28,27,25,0.08); background: #fbfaf7; box-shadow: 0 12px 28px rgba(28,27,25,0.04); }
.menu-shell-chef-atelier { gap: 1rem; }
.menu-category-chef-atelier { padding: 1.5rem; }
.menu-item-chef-atelier { display: grid; grid-template-columns: 1fr auto; gap: 1rem; }
.about-layout-chef-atelier { grid-template-columns: 1.1fr 0.9fr; }
.contact-grid-chef-atelier, .hours-shell-chef-atelier { grid-template-columns: 1fr 1fr; display: grid; align-items: start; }
.cta-banner-chef-atelier { background: #1c1b19; }
.cta-inner-chef-atelier { display: grid; grid-template-columns: 1fr auto; text-align: left; }
.cta-btn-chef-atelier { background: #fbfaf7; color: #1c1b19; border-radius: 999px; }


@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero-grid,
  .hero-grid-with-media,
  .hero-pizzeria-inner,
  .about-layout,
  .menu-category-editorial-bistro,
  .contact-grid-editorial-bistro,
  .contact-grid-coastal-bright,
  .contact-grid-heritage-grand,
  .contact-grid-terracotta-market,
  .contact-grid-chef-atelier,
  .hours-shell-heritage-grand,
  .hours-shell-chef-atelier,
  .hours-shell-editorial-bistro,
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .cta-inner,
  .cta-inner-editorial-bistro,
  .cta-inner-midnight-lounge,
  .cta-inner-heritage-grand,
  .cta-inner-chef-atelier,
  .loyalty-inner,
  .loyalty-inner-bold-pizzeria { grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  header nav { flex-direction: column; gap: 1rem; }
  header nav a { margin-left: 0; }
  .menu-shell-coastal-bright { grid-template-columns: 1fr; }
  .menu-shell-terracotta-market { grid-template-columns: 1fr; }
  .menu-item,
  .menu-item-modern-minimal,
  .menu-item-midnight-lounge,
  .menu-item-chef-atelier,
  .menu-item-heritage-grand,
  .feature-variant-list,
  .cta-inner-variant-split { grid-template-columns: 1fr; }
  .contact-grid-variant-cards,
  .hours-cards,
  .testimonials-variant-grid { grid-template-columns: 1fr; }
  .locations-carousel,
  .locations-carousel-bold-pizzeria,
  .events-grid,
  .events-grid-bold-pizzeria,
  .reviews-grid { grid-template-columns: 1fr; }
  .order-bar-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero-pizzeria-headline { font-size: 2.2rem; }
  .hero-ps-panels,
  .hero-dark-cards-row,
  .features-variant-services-grid,
  .features-variant-three-col,
  .features-variant-card-grid,
  .features-variant-mobile-showcase,
  .features-variant-two-col-cards,
  .about-layout-variant-split,
  .about-layout-variant-portrait,
  .about-layout-variant-two-col-image,
  .cta-inner-variant-image-text,
  .cta-inner-variant-landscape,
  .gallery-grid-variant-sidebar-grid,
  .gallery-grid-variant-asymmetric,
  .gallery-grid-variant-heading-gallery,
  .testimonials-variant-team-profiles { grid-template-columns: 1fr; flex-direction: column; }
  .hero-search-bar { flex-direction: column; border-radius: 16px; }
  .hero-search-input { border-radius: 16px 16px 0 0; }
  .hero-search-btn { border-radius: 0 0 16px 16px; }
  .hero-landscape-bg { min-height: 380px; }
}