
:root {
  --primary: #050505;
  --primary-dark: #7DBB3A;
  --secondary: #c8a819;
  --secondary-gold: #F0F0F0;
  --secondary-brown: #E8E8E8;
  --accent-green: #C0C0C0;
  --accent-cream: #FAFAFA;
  --bg: #FFFFFF;
  --text: #2B2B2B;
  --gray: #999999;
  --border: #E5E5E5;
  --surface: #FFFFFF;
  --page: #FFFFFF;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

* { 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: 0; position: sticky; top: 0; z-index: 50; transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease; }
header nav { display: flex; justify-content: space-between; align-items: center; min-height: 55px; padding: 0 0 1rem; }
header nav a { color: white; text-decoration: none; margin-left: 0.25rem; padding: 0.35rem 1rem; font-size: 0.95rem; border-radius: 999px; border: 1.5px solid transparent; transition: border-color 0.2s, opacity 0.2s; }
header nav a:hover { opacity: 0.85; border-color: color-mix(in srgb, currentColor 50%, transparent); }
header nav a.nav-link-active { border-color: currentColor; opacity: 1; }
.header-cta { color: inherit; text-decoration: none; padding: 0.4rem 1.2rem; border-radius: 999px; border: 1.5px solid currentColor; font-size: 0.9rem; font-weight: 600; white-space: nowrap; transition: opacity 0.2s, background 0.2s; margin-left: 1rem; opacity: 0.88; }
.header-cta:hover { opacity: 1; background: rgba(255,255,255,0.15); }
body.has-hero .header-cta:hover { background: white; color: var(--primary); }
header .logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; }
.logo-img-wrap { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 48px; width: auto; max-width: 180px; object-fit: contain; display: block; }

.header-topbar { background: rgba(0,0,0,0.18); height: 45px; display: flex; align-items: center; font-size: 0.78rem; margin-bottom: 16px; }
.header-topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; width: 100%; }
.header-topbar-left { display: flex; align-items: center; gap: 1.25rem; }
.header-topbar-right { display: flex; align-items: center; gap: 0.6rem; }
.topbar-item { display: flex; align-items: center; gap: 0.35rem; opacity: 0.9; }
.topbar-icon { width: 13px; height: 13px; flex-shrink: 0; }
.topbar-link { color: inherit; text-decoration: none; }
.topbar-link:hover { opacity: 0.8; }
.social-icon-link { display: flex; align-items: center; color: inherit; opacity: 0.8; transition: opacity 0.2s; }
.social-icon-link:hover { opacity: 1; }
.social-icon { width: 15px; height: 15px; }

body.has-hero header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: linear-gradient(to bottom, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.18) 65%, transparent 100%); border-bottom: none; box-shadow: none; }
header.header-scrolled { background: color-mix(in srgb, var(--primary) 78%, transparent) !important; backdrop-filter: blur(14px) !important; -webkit-backdrop-filter: blur(14px) !important; box-shadow: 0 2px 24px rgba(0,0,0,0.12) !important; border-bottom: none !important; }
body.has-hero header.header-scrolled { background: color-mix(in srgb, var(--primary) 78%, transparent) !important; }
body.has-hero header nav a, body.has-hero header .logo, body.has-hero header .logo-img-wrap { color: white !important; text-shadow: 0 1px 4px rgba(0,0,0,0.35); }
body.has-hero .header-topbar { background: transparent; border-bottom-color: rgba(255,255,255,0.3); color: white; }
body.has-hero .hero:first-of-type, body.has-hero section:first-of-type { padding-top: 0; margin-top: 0; }

.hero { background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), var(--primary); background-repeat: no-repeat; background-size: cover; color: white; padding: 6rem 0; text-align: center; min-height: 600px; display: flex; align-items: 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: 600px; border-radius: 28px; overflow: hidden; box-shadow: 0 18px 48px rgba(15, 23, 42, 0.2); }
.hero-media-image { width: 100%; height: 600px; 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 { display: flex; flex-direction: column; justify-content: space-between; text-align: left; padding: 2rem; }
.testimonial-body { flex: 1; }
.testimonial-title { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; font-style: normal; }
.testimonial-quote { font-size: 0.95rem; line-height: 1.65; color: var(--text); font-style: normal; }
.testimonial-footer { margin-top: 1.5rem; }
.testimonial-divider { border: none; border-top: 1px solid #e0e0e0; margin-bottom: 1.25rem; }
.testimonial-author-row { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--secondary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; overflow: hidden; }
.testimonial-author-name { font-weight: 700; font-size: 0.95rem; margin: 0; }
.testimonial-location { font-size: 0.85rem; color: #888; margin: 0.125rem 0 0; }
/* cards: default 3-col, already handled by .features base */
.testimonials-variant-quotes { grid-template-columns: 1fr; gap: 1.25rem; }
.testimonial-variant-quotes { display: grid; grid-template-columns: 1fr; flex-direction: unset; }
/* grid: 2-col for a wider, editorial feel */
.testimonials-variant-grid { grid-template-columns: repeat(2, 1fr); }
/* team-profiles: fixed 3-col */
.testimonials-variant-team-profiles { grid-template-columns: repeat(3, 1fr); }

.menu-layout { display: flex; gap: 0; align-items: flex-start; }
.menu-sidebar { width: 260px; min-width: 220px; flex-shrink: 0; position: sticky; top: 80px; max-height: calc(100vh - 100px); overflow-y: auto; padding-right: 1.5rem; }
.menu-search-wrap { position: relative; margin-bottom: 1rem; }
.menu-search-wrap svg { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: #999; pointer-events: none; }
.menu-search-input { width: 100%; padding: 0.625rem 1rem 0.625rem 2.25rem; border: 1px solid #e5e7eb; border-radius: 999px; font-size: 0.875rem; background: #f9f9f9; outline: none; font-family: inherit; color: inherit; box-sizing: border-box; }
.menu-search-input:focus { border-color: var(--primary); }
.menu-nav { display: flex; flex-direction: column; }
.menu-nav-link { display: block; padding: 0.625rem 1rem; font-size: 0.9rem; color: inherit; text-decoration: none; border-radius: 6px; transition: background 0.15s, color 0.15s; }
.menu-nav-link:hover { background: rgba(0,0,0,0.05); }
.menu-nav-link.active { background: #111; color: #fff; }
.menu-main { flex: 1; min-width: 0; }
.menu-shell { display: grid; gap: 2rem; }
.menu-category { margin-bottom: 2.5rem; background: transparent; border: none !important; box-shadow: none !important; border-radius: 0 !important; padding: 0 !important; }
.menu-category h2 { font-size: 1.5rem; font-weight: 700; margin: 0 0 0.25rem; border-bottom: none; padding-bottom: 0; }
.menu-category-header { margin-bottom: 1.25rem; }
.menu-category-description { color: #666; font-size: 0.95rem; margin: 0.25rem 0 0; }
.menu-items-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.menu-item { display: flex; border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; background: var(--surface, #fff); }
.menu-item-text { flex: 1; padding: 1.25rem; min-width: 0; }
.menu-item-name { font-size: 1rem; font-weight: 700; margin: 0 0 0.25rem; }
.menu-item-price { font-size: 0.95rem; font-weight: 600; color: var(--primary); margin: 0 0 0.5rem; }
.menu-item-desc { font-size: 0.85rem; color: #666; line-height: 1.5; margin: 0; }
.menu-item-tags { display: flex; gap: 0.4rem; margin-top: 0.5rem; flex-wrap: wrap; }
.menu-item-tags span { background: var(--secondary, #f0f0f0); color: white; padding: 0.1rem 0.5rem; border-radius: 4px; font-size: 0.75rem; }
.menu-item-img-col { position: relative; width: 180px; min-width: 160px; background: #f5f5f5; flex-shrink: 0; }
.menu-item-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.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 { 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; }
.map-split { display: grid; grid-template-columns: 42% 1fr; border-radius: 20px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); margin-top: 2rem; min-height: 360px; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.map-split-no-embed { grid-template-columns: 1fr; }
.map-embed-col { position: relative; overflow: hidden; }
.map-embed-col iframe { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.map-info-col { background: var(--surface, #f9f9f9); padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.map-info-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.map-biz-label { font-size: 0.82rem; color: #888; margin-bottom: 0.2rem; }
.map-loc-title { font-size: 1.6rem; font-weight: 700; margin: 0; line-height: 1.2; }
.map-dir-btn { font-size: 0.82rem !important; padding: 0.45rem 1rem !important; white-space: nowrap; }
.map-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.map-contact-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #888; margin-bottom: 0.35rem; }
.map-contact-val { font-size: 0.88rem; color: #444; line-height: 1.55; }
.map-contact-val a { color: inherit; text-decoration: none; }
.map-contact-val a:hover { text-decoration: underline; }
.map-divider { height: 1px; background: rgba(0,0,0,0.08); margin: 0.25rem 0; }
.map-footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; margin-top: auto; }
.map-today-hours { font-size: 0.9rem; color: #555; }
.map-cta-btn { padding: 0.55rem 1.25rem !important; font-size: 0.88rem !important; }

.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: 1.25rem 0 1.5rem; }
footer a { color: inherit; text-decoration: none; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 0.5rem 0 1rem; flex-wrap: wrap; }
.footer-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.footer-nav-link { font-size: 0.88rem; opacity: 0.78; transition: opacity 0.2s; white-space: nowrap; }
.footer-nav-link:hover { opacity: 1; }
.footer-nav-sep { opacity: 0.3; padding: 0 0.65rem; font-size: 0.8rem; user-select: none; }
.footer-legal { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.footer-legal-link { font-size: 0.88rem; opacity: 0.65; white-space: nowrap; transition: opacity 0.2s; }
.footer-legal-link:hover { opacity: 1; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1rem 0 0; flex-wrap: wrap; }
.footer-social { display: flex; align-items: center; gap: 0.45rem; }
.footer-social .social-icon-link { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.14); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 1; transition: background 0.2s; }
.footer-social .social-icon-link:hover { background: rgba(255,255,255,0.26); }
.footer-social .social-icon { width: 14px; height: 14px; }
.footer-copy { font-size: 0.85rem; opacity: 0.6; }
.footer-powered { font-size: 0.85rem; opacity: 0.6; white-space: nowrap; }
.footer-powered strong { font-weight: 700; }
.footer-brand { font-family: var(--font-heading); font-size: 1.2rem; color: white; }
.footer-meta { color: inherit; }
.faq-shell { max-width: 800px; }
.faq-heading { margin-bottom: 2rem; }
.faq-heading h2 { font-size: 1.5rem; font-weight: 700; text-align: left; }
.faq-list { }
.faq-item { border-bottom: 1px solid #e5e7eb; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; padding: 0 !important; margin: 0 !important; }
.faq-item:first-child { border-top: 1px solid #e5e7eb; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; cursor: pointer; font-size: 1rem; font-weight: 400; list-style: none; user-select: none; gap: 1rem; }
.faq-question::-webkit-details-marker { display: none; }
.faq-chevron { flex-shrink: 0; transition: transform 0.2s ease; color: #6b7280; }
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding-bottom: 1.25rem; color: #6b7280; font-size: 0.95rem; line-height: 1.7; background: transparent !important; border: none !important; box-shadow: none !important; }
.faq-answer p { margin: 0; background: transparent; }
.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: 600px; }
.hero-media-right img { width: 100%; height: 600px; object-fit: cover; display: block; }
.hero-media-placeholder { width: 100%; height: 600px; 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; min-height: 600px; display: flex; align-items: flex-end; background-size: cover; background-position: center; background-color: var(--primary); }
.hero-landscape-overlay { width: 100%; 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%); }
.hero-landscape-overlay h1, .hero-landscape-overlay p { color: #fff; }
.hero-landscape-overlay .btn { margin-top: 1.5rem; }

/* Layout variant: banner-carousel */
.hero-carousel { position: relative; padding: 0; }
.carousel-track { position: relative; width: 100%; height: 600px; overflow: hidden; }
.carousel-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.6s ease; display: flex; align-items: center; z-index: 0; }
.carousel-slide.carousel-slide-active { opacity: 1; z-index: 1; }
.carousel-slide-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.55) 100%); z-index: 0; }
.carousel-slide-content { position: relative; z-index: 2; padding: 5rem 0; color: #fff; width: 100%; }
.carousel-slide-content h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.carousel-slide-sub { color: rgba(255,255,255,0.88); font-size: 1.15rem; margin-bottom: 2rem; }
.carousel-slide-btn { margin-top: 0.5rem; }
.carousel-arrow { position: absolute; top: calc(50% - 22px); z-index: 20; background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.5); color: #fff; border-radius: 50%; width: 44px; height: 44px; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.carousel-arrow:hover { background: rgba(255,255,255,0.42); }
.carousel-arrow-prev { left: 1.25rem; }
.carousel-arrow-next { right: 1.25rem; }
.carousel-dots { position: absolute; bottom: 1.25rem; left: 0; right: 0; display: flex; justify-content: center; gap: 0.5rem; z-index: 20; }
.carousel-dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.45); border: none; cursor: pointer; padding: 0; transition: width 0.3s, background 0.3s; }
.carousel-dot.carousel-dot-active { width: 24px; background: #fff; }

/* 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 { display: flex; flex-direction: column; justify-content: space-between; text-align: left; padding: 2rem; background: var(--surface); border-radius: 16px; border: 1px solid rgba(0,0,0,0.06); }
.pl-tp-body { flex: 1; }
.pl-tp-title { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; font-style: normal; }
.pl-tp-quote { font-size: 0.95rem; line-height: 1.65; color: var(--text); font-style: normal; }
.pl-tp-footer { margin-top: 1.5rem; }
.pl-tp-divider { border: none; border-top: 1px solid #e0e0e0; margin-bottom: 1.25rem; }
.pl-tp-author-row { display: flex; align-items: center; gap: 0.875rem; }
.pl-tp-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--secondary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }
.pl-tp-author { font-weight: 700; font-size: 0.95rem; margin: 0; color: var(--text); }
.pl-tp-location { font-size: 0.85rem; color: #888; margin: 0.125rem 0 0; }

/* 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: #FFFFFF; }
header { background: #FFFFFF; border-bottom: 1px solid #E5E5E5; box-shadow: none; }
header nav a, header .logo { color: #7DBB3A; }
.hero { background: linear-gradient(135deg, rgba(25, 17, 12, 0.52), rgba(25, 17, 12, 0.32)), linear-gradient(120deg, color-mix(in srgb, var(--primary) 92%, black), var(--primary)); }
.section-alt { background: #FAFAFA; }
.feature, .menu-category, .contact-grid, .about-content, .hours-table, .cta-banner .container { border-radius: 18px; }
.feature { background: rgba(255,255,255,0.82); border: 1px solid color-mix(in srgb, var(--primary) 8%, transparent); }
.menu-category { background: rgba(255,255,255,0.84); padding: 1.5rem; border: 1px solid color-mix(in srgb, var(--primary) 8%, transparent); }
.about-layout-classic-restaurant { grid-template-columns: 1.2fr 0.8fr; }
.about-values-classic-restaurant .feature { text-align: left; }
.cta-inner-classic-restaurant { text-align: left; }


@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-top { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .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-topbar { display: none; }
  header nav { flex-direction: column; gap: 0.5rem; }
  header nav a { margin-left: 0; padding: 0.3rem 0.75rem; }
  .menu-layout { flex-direction: column; }
  .menu-sidebar { width: 100%; position: static; max-height: none; padding-right: 0; overflow-y: visible; }
  .menu-nav { flex-direction: row; flex-wrap: wrap; gap: 0.25rem; margin-bottom: 1rem; }
  .menu-nav-link { padding: 0.4rem 0.75rem; font-size: 0.8rem; border: 1px solid #e5e7eb; }
  .menu-nav-link.active { border-color: transparent; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .menu-item-img-col { width: 120px; min-width: 100px; }
  .feature-variant-list,
  .cta-inner-variant-split { grid-template-columns: 1fr; }
  .contact-grid-variant-cards,
  .hours-cards,
  .testimonials-variant-grid { grid-template-columns: 1fr; }
  .map-split { grid-template-columns: 1fr; }
  .map-embed-col { position: relative; height: 260px; }
  .map-embed-col iframe { position: absolute; inset: 0; min-height: 260px; }
  .map-info-header { flex-direction: column; align-items: flex-start; }
  .map-contact-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, .testimonials-variant-grid { 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 { min-height: 380px; }
  .carousel-track { height: 340px; }
  .carousel-arrow { width: 36px; height: 36px; font-size: 0.9rem; top: calc(50% - 18px); }
}