/* ============================================================
   SOUTH ZONE — site chrome and Elementor polish
   Tokens come from the South Zone Menu plugin (tokens.css).
   Only what an Elementor setting cannot express lives here:
   header, footer, the four-button set, and a few finishing touches.
   ============================================================ */

:root { --header-h: 64px; }
@media (min-width: 1025px) { :root { --header-h: 76px; } }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body { margin: 0; background: #fff; color: #3B2A1F; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { max-width: 100%; height: auto; }
::selection { background: var(--sz-saffron); color: var(--sz-espresso); }

.szc-skip { position: absolute; left: 12px; top: -60px; z-index: 10000; padding: 10px 16px; border-radius: 12px;
  background: var(--sz-espresso); color: var(--sz-saffron); font-weight: 800; transition: top .2s; }
.szc-skip:focus { top: 12px; color: var(--sz-saffron); }
:focus-visible { outline: 3px solid var(--sz-saffron-600); outline-offset: 3px; }

/* Veg mark: the regulation square with a dot */
.szc-veg { display: inline-block; flex: 0 0 auto; width: 14px; height: 14px; border: 2px solid currentColor; border-radius: 3px; position: relative; vertical-align: -2px; }
.szc-veg::after { content: ""; position: absolute; inset: 2px; border-radius: 50%; background: currentColor; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 9000; width: 100%; max-width: none !important; margin: 0 !important;
  background: var(--sz-saffron); transition: box-shadow var(--dur-base); }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 0; } }
.site-header.is-scrolled { box-shadow: 0 6px 20px rgba(33, 23, 14, 0.12); }
.site-header__in { display: flex; align-items: center; gap: 12px; height: var(--header-h); max-width: var(--container-max);
  margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .site-header__in { padding: 0 24px; } }

.site-header .brand, .site-footer .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; }
.site-header .brand img { width: 44px; height: 44px; border-radius: 50%; }
@media (min-width: 1025px) { .site-header .brand img { width: 50px; height: 50px; } }
.brand__text { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.brand__name { display: block; font-family: var(--font-display); font-size: 21.5px; line-height: 0.9; letter-spacing: 0.02em; text-transform: uppercase; color: var(--sz-espresso); }
.brand__sub { display: block; margin: 0; font-family: var(--font-body); font-size: 9.5px; font-weight: 800; line-height: 1; letter-spacing: 0.09em; text-transform: uppercase; color: var(--sz-espresso-700); }

.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav a { text-decoration: none; }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.open-status { display: none; align-items: center; gap: 7px; padding: 7px 12px; border-radius: var(--radius-pill);
  background: rgba(33, 23, 14, 0.07); font-size: 12px; font-weight: 700; color: var(--sz-espresso-700); white-space: nowrap; }
.open-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sz-espresso-500); }
.open-status.is-open::before { background: var(--sz-veg-green); box-shadow: 0 0 0 3px rgba(31, 138, 59, 0.22); }

.szc-pill { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 10px 18px;
  border-radius: var(--radius-pill); font-family: var(--font-body); font-size: 14px; font-weight: 800; text-decoration: none; white-space: nowrap;
  transition: background var(--dur-fast), color var(--dur-fast); }
.site-header .szc-pill--dark, .site-header .szc-pill--dark:hover { background: var(--sz-espresso); color: var(--sz-saffron); }
.site-header .szc-pill--dark:hover { background: var(--sz-espresso-700); }
.site-header .szc-pill--wa, .site-header .szc-pill--wa:hover { background: var(--sz-wa); color: var(--sz-wa-ink); }
.header-call { display: none; }

body .site-header button.header-cart, body .site-header button.nav-toggle {
  position: relative; display: inline-grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px;
  border-radius: 14px; background: var(--sz-espresso); color: var(--sz-saffron); }
body .site-header button.header-cart:hover, body .site-header button.nav-toggle:hover { background: var(--sz-espresso-700); color: var(--sz-saffron); }
body .site-header button.nav-toggle { background: transparent; color: var(--sz-espresso); box-shadow: inset 0 0 0 2px var(--sz-espresso); }
body .site-header button.nav-toggle:hover { background: rgba(33, 23, 14, 0.08); color: var(--sz-espresso); }
.nav-toggle__open, .nav-toggle__close { display: grid; place-items: center; }
.nav-toggle__close, .nav-open .nav-toggle__open { display: none; }
.nav-open .nav-toggle__close { display: grid; }

/* Mobile and tablet: the nav is a panel under the header */
@media (max-width: 1024px) {
  .site-nav { position: fixed; left: 0; right: 0; top: var(--header-h); bottom: 0; z-index: 8999; overflow-y: auto;
    padding: 12px 20px 32px; background: var(--sz-saffron); border-top: 1px solid rgba(33, 23, 14, 0.12);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity var(--dur-base), transform var(--dur-base) var(--ease-out), visibility 0s linear var(--dur-base); }
  .admin-bar .site-nav { top: calc(var(--header-h) + 46px); }
  .nav-open .site-nav { opacity: 1; visibility: visible; transform: none; transition: opacity var(--dur-base), transform var(--dur-base) var(--ease-out); }
  .nav-open { overflow: hidden; }
  .site-nav li { border-bottom: 1px solid rgba(33, 23, 14, 0.12); }
  .site-nav li a { display: flex; align-items: center; justify-content: space-between; padding: 18px 4px;
    font-family: var(--font-display); font-size: 26px; line-height: 1.1; text-transform: uppercase; color: var(--sz-espresso); }
  .site-nav li a::after { content: "→"; font-family: var(--font-body); font-size: 20px; font-weight: 700; }
  .site-nav li a[aria-current="page"] { color: var(--sz-terracotta); }
  .site-nav__extra { display: grid; gap: 10px; margin-top: 24px; }
  .site-nav__extra .szc-pill { min-height: 52px; font-size: 15px; }
  .site-nav__extra p { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 6px 0 0;
    font-size: 13px; font-weight: 700; color: var(--sz-espresso-700); }
}

/* Desktop: inline nav */
@media (min-width: 1025px) {
  .nav-toggle, body .site-header button.nav-toggle { display: none; }
  .site-nav { margin-left: 28px; }
  .site-nav ul { display: flex; gap: 2px; }
  .site-nav li a { display: block; padding: 10px 14px; border-radius: var(--radius-pill);
    font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--sz-espresso); transition: background var(--dur-fast); }
  .site-nav li a:hover { background: rgba(33, 23, 14, 0.08); color: var(--sz-espresso); }
  .site-nav li a[aria-current="page"] { background: rgba(33, 23, 14, 0.1); font-weight: 800; }
  .site-nav__extra { display: none; }
  .header-call { display: inline-flex; }
}
@media (min-width: 1200px) { .open-status { display: inline-flex; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { width: 100%; max-width: none !important; margin: 0 !important; background: var(--sz-espresso-900); color: var(--sz-cream); }
.site-footer__in { display: grid; gap: 36px; max-width: var(--container-max); margin: 0 auto; padding: 64px 20px 40px; }
@media (min-width: 768px) { .site-footer__in { grid-template-columns: 1fr 1fr; padding: 72px 24px 48px; } }
@media (min-width: 1025px) { .site-footer__in { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; } }

.site-footer .brand img { width: 52px; height: 52px; border-radius: 50%; }
.site-footer .brand__name { color: var(--sz-white); }
.site-footer .brand__sub { color: var(--sz-saffron); }
.site-footer__tagline { margin: 18px 0 0; font-family: var(--font-script); font-size: 26px; font-weight: 700; line-height: 1.1; color: var(--sz-saffron); }
.site-footer__veg { display: flex; align-items: center; gap: 8px; margin: 12px 0 0; font-size: 13px; font-weight: 700; color: var(--sz-cream); }
.site-footer__veg .szc-veg { color: #4CC26A; }
.site-footer__social { display: flex; gap: 10px; margin-top: 20px; }
.site-footer__social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.07); color: var(--sz-saffron); transition: background var(--dur-fast), color var(--dur-fast); }
.site-footer__social a:hover { background: var(--sz-saffron); color: var(--sz-espresso); }

.site-footer__title { margin: 4px 0 16px; font-family: var(--font-body); font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sz-saffron); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: var(--sz-cream); text-decoration: none; transition: color var(--dur-fast); }
.site-footer a:hover { color: var(--sz-saffron); }
.site-footer__col, .site-footer address { font-size: 14.5px; font-weight: 500; line-height: 1.7; font-style: normal; color: rgba(239, 225, 213, 0.85); }
.site-footer__col p { margin: 8px 0 0; }
.site-footer__col li a { font-weight: 600; }
.site-footer__base { border-top: 1px solid rgba(239, 225, 213, 0.12); }
.site-footer__base p { max-width: var(--container-max); margin: 0 auto; padding: 20px; font-size: 12.5px; color: rgba(239, 225, 213, 0.6); }
@media (min-width: 768px) { .site-footer__base p { padding: 22px 24px; } }

/* ============================================================
   ELEMENTOR: shared patterns
   ============================================================ */

/* Measures: centred max-widths for containers (containers have no max-width control) */
.szc-measure { margin-left: auto !important; margin-right: auto !important; width: 100%; }
.szc-measure-640 { max-width: 640px; } .szc-measure-720 { max-width: 720px; }
.szc-measure-760 { max-width: 760px; } .szc-measure-820 { max-width: 820px; } .szc-measure-960 { max-width: 960px; }

.szc-kicker .elementor-heading-title { transform: rotate(-2deg); transform-origin: left center; display: inline-block; }
.szc-head-sub p:last-child, .szc-hero-sub p:last-child { margin-bottom: 0; }
.szc-head-sub strong { color: inherit; font-weight: 800; }

/* The dark pill tag */
.szc-tag .elementor-heading-title { display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px;
  border-radius: var(--radius-pill); background: var(--sz-espresso); color: var(--sz-cream); }
.szc-tag .szc-veg { color: var(--sz-saffron); }

/* Cards lift; linked cards are clickable edge to edge */
.szc-card { position: relative; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) !important; }
.szc-card:not(.szc-card--dark):hover { transform: translateY(-4px); box-shadow: var(--shadow-md) !important; }
.szc-link-card .elementor-icon-box-title a::after, .szc-link-card .szc-stretch a::after { content: ""; position: absolute; inset: 0; border-radius: 20px; }
.szc-link-card:focus-within { outline: 3px solid var(--sz-saffron-600); outline-offset: 2px; }
.szc-link-card .elementor-icon-box-title a:focus-visible { outline: none; }

/* Icon boxes: the icon is a fixed disc, the text never jumps under it */
.elementor-widget-icon-box .elementor-icon-box-icon { flex-shrink: 0; }
.elementor-widget-icon-box .elementor-icon-box-description { margin: 0; }
.szc-channel .elementor-icon-box-title, .szc-channel .elementor-icon-box-title a { color: var(--sz-espresso); }
.szc-kitchen .elementor-icon-box-title a { color: inherit; }
.szc-kitchen-col { border-left: 1px solid rgba(254, 188, 17, 0.14); transition: background var(--dur-fast); }
.szc-kitchen-col:first-child { border-left: 0; }
.szc-kitchen-col:hover { background: rgba(255, 255, 255, 0.04); }
@media (max-width: 767px) { .szc-kitchen-col { border-left: 0; border-top: 1px solid rgba(254, 188, 17, 0.14); } .szc-kitchen-col:first-child { border-top: 0; } }
.szc-visit-row .elementor-icon-box-description a { color: inherit; font-weight: 700; text-decoration: underline; text-decoration-color: var(--sz-saffron); text-underline-offset: 3px; }

/* Icon lists that read as a single proof line */

/* ---- The four buttons ---- */
.szc-btn .elementor-button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px;
  transition: background var(--dur-fast), color var(--dur-fast), box-shadow var(--dur-base), transform var(--dur-fast) var(--ease-out); }
.szc-btn .elementor-button:active { transform: translateY(1px); }
.szc-btn .elementor-button-content-wrapper { align-items: center; }
.szc-btn .elementor-button-icon svg, .szc-btn .elementor-button-icon i { font-size: 15px; width: 15px; height: 15px; }
body .szc-btn--primary .elementor-button { background: var(--sz-saffron); color: var(--sz-espresso); }
body .szc-btn--primary .elementor-button:hover { background: var(--sz-saffron-600); color: var(--sz-espresso); box-shadow: 0 8px 20px rgba(229, 168, 0, 0.35); }
body .szc-btn--dark .elementor-button { background: var(--sz-espresso); color: var(--sz-saffron); }
body .szc-btn--dark .elementor-button:hover { background: var(--sz-espresso-700); color: var(--sz-saffron); box-shadow: 0 8px 20px rgba(33, 23, 14, 0.25); }
body .szc-btn--outline .elementor-button { background: transparent; color: var(--sz-espresso); box-shadow: inset 0 0 0 2px var(--sz-espresso); }
body .szc-btn--outline .elementor-button:hover { background: var(--sz-espresso); color: var(--sz-saffron); }
body .szc-btn--light .elementor-button { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55); }
body .szc-btn--light .elementor-button:hover { background: #fff; color: var(--sz-espresso); box-shadow: inset 0 0 0 2px #fff; }
body .szc-btn--wa .elementor-button { background: var(--sz-wa); color: var(--sz-wa-ink); }
body .szc-btn--wa .elementor-button:hover { background: #1FBE5A; color: var(--sz-wa-ink); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35); }
body .szc-btn .elementor-button .elementor-button-icon { color: inherit; fill: currentColor; }
/* On a phone, stacked full-width buttons are easier to hit than two squeezed ones */
@media (max-width: 767px) {
  .szc-buttons > .elementor-widget-button { flex: 1 1 100%; }
  .szc-buttons .elementor-button { width: 100%; }
}

/* ---- Photos ---- */
.szc-photo img { border-radius: var(--radius-xl); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.szc-cutout img, .szc-hero-img img { border-radius: 0; box-shadow: none; filter: drop-shadow(0 24px 40px rgba(33, 23, 14, 0.3)); }

/* ============================================================
   HOME
   ============================================================ */
.szc-hero-title .elementor-heading-title { text-transform: uppercase; }
.szc-hero-art { position: relative; }
.szc-hero-art > .elementor-element { position: relative; }
.szc-hero-art .szc-kicker { position: absolute !important; top: 2%; left: 0; z-index: 2; width: auto !important; }
.szc-hero-img img { max-height: 520px; width: auto; margin: 0 auto; }
@media (max-width: 1024px) { .szc-hero-img img { max-height: 380px; } .szc-hero-art { margin-top: 12px; } }
@media (max-width: 767px) { .szc-hero-img img { max-height: 300px; } }

.szc-full { width: 100%; }

.szc-quote p { margin: 0; }
.szc-quote-by .elementor-heading-title { display: flex; flex-direction: column; gap: 2px; font-size: 15px !important; }
.szc-quote-by span { font-family: var(--font-body); font-size: 12.5px; font-weight: 600; color: var(--sz-espresso-500); }
.elementor-widget-star-rating .elementor-star-rating { display: inline-flex; }

.szc-map iframe { border-radius: var(--radius-xl); box-shadow: var(--shadow-md); display: block; filter: saturate(0.9); }

/* ============================================================
   INNER PAGES
   ============================================================ */
.szc-page-hero { position: relative; overflow: hidden; }
.szc-page-hero::after { content: ""; position: absolute; inset: auto -10% -60% auto; width: 420px; height: 420px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.18); pointer-events: none; }
.szc-page-hero > .e-con-inner { position: relative; z-index: 1; }

/* Stats band */
.szc-stat { text-align: center; }
.szc-stat + .szc-stat { border-left: 1px solid rgba(254, 188, 17, 0.18); }
@media (max-width: 767px) {
  .szc-stat + .szc-stat { border-left: 0; }
  .szc-stat:nth-child(even) { border-left: 1px solid rgba(254, 188, 17, 0.18); }
}

/* The menu section starts flush under the page hero; the sticky bar supplies the edge */
.szc-menu-section > .e-con-inner { padding-top: 0; }

/* Service chips on the celebrations page */
.szc-service .elementor-icon-box-title { margin-bottom: 0 !important; }

/* Photos by role */
.szc-photo--tall img { aspect-ratio: 4 / 5; max-height: 640px; }
.szc-photo--hero img { aspect-ratio: 4 / 3; }
.szc-photo-card { overflow: hidden; }
.szc-card-photo img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 0; box-shadow: none; transition: transform var(--dur-slow) var(--ease-out); }
.szc-photo-card:hover .szc-card-photo img { transform: scale(1.04); }
.szc-photo-card .szc-card-photo { overflow: hidden; }
.szc-more p { margin: 6px 0 0; }
.szc-more a { color: var(--sz-chilli); text-decoration: none; }
.szc-more a span { display: inline-block; transition: transform var(--dur-fast); }
.szc-photo-card:hover .szc-more a span { transform: translateX(4px); }
.szc-card--static:hover { transform: none !important; }

/* Numbered steps */
.szc-step-num .elementor-heading-title { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--sz-saffron); color: var(--sz-espresso); }

/* FAQ: Elementor's nested accordion, restyled as a clean list */
.szc-faq .e-n-accordion { display: flex; flex-direction: column; }
.szc-faq .e-n-accordion-item { border-bottom: 1px solid var(--sz-cream-200); }
.szc-faq .e-n-accordion-item:first-child { border-top: 1px solid var(--sz-cream-200); }
body .szc-faq .e-n-accordion-item-title { padding: 22px 4px; border: 0; background: transparent; gap: 16px; }
.szc-faq .e-n-accordion-item-title-header { flex: 1; text-align: left; }
.szc-faq .e-n-accordion-item-title-text { font-family: var(--font-body); font-size: 17px; font-weight: 700; line-height: 1.4; color: var(--sz-espresso); }
.szc-faq .e-n-accordion-item-title-icon { color: var(--sz-espresso); }
.szc-faq .e-n-accordion-item[open] .e-n-accordion-item-title-text,
.szc-faq .e-n-accordion-item[open] .e-n-accordion-item-title-icon { color: var(--sz-terracotta); }
.szc-faq .e-n-accordion-item > .e-con { border: 0 !important; }
.szc-faq .e-n-accordion-item > .e-con p a { color: inherit; font-weight: 700; text-decoration: underline; text-decoration-color: var(--sz-saffron); text-underline-offset: 3px; }

/* FAQ accordion (legacy widget) */
.szc-faq .elementor-accordion-item { border: 0 !important; border-bottom: 1px solid var(--sz-cream-200) !important; }
.szc-faq .elementor-accordion-item:first-child { border-top: 1px solid var(--sz-cream-200) !important; }
.szc-faq .elementor-tab-title { padding: 22px 4px !important; }
.szc-faq .elementor-tab-title a { color: var(--sz-espresso) !important; }
.szc-faq .elementor-tab-content { padding: 0 4px 22px !important; border: 0 !important; }
.szc-faq .elementor-accordion-icon { color: var(--sz-espresso); }
.szc-faq .elementor-tab-title.elementor-active .elementor-accordion-icon { color: var(--sz-terracotta); }

/* ============================================================
   FORMINATOR: the celebrations enquiry, in the house style
   Its own grid squeezes four fields into a row; ours gives two
   per row (one on a phone) and the message the full width.
   ============================================================ */
.szc-form .forminator-ui .forminator-row { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 16px; }
.szc-form .forminator-ui .forminator-row > .forminator-col { width: auto !important; max-width: none !important; flex: none !important; padding: 0 !important; margin: 0 !important; }
.szc-form .forminator-ui .forminator-row > .forminator-col:has(textarea) { grid-column: 1 / -1; }
.szc-form .forminator-ui .forminator-row-last > .forminator-col, .szc-form .forminator-ui .forminator-pagination-footer { grid-column: 1 / -1; }
@media (max-width: 600px) { .szc-form .forminator-ui .forminator-row { grid-template-columns: 1fr; } }
.szc-form .forminator-ui.forminator-custom-form { margin: 0 !important; font-family: var(--font-body) !important; }
.szc-form .forminator-ui .forminator-row { margin-bottom: 18px !important; }
.szc-form .forminator-ui .forminator-label { margin-bottom: 6px !important; font-family: var(--font-body) !important; font-size: 12px !important;
  font-weight: 800 !important; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sz-espresso) !important; }
.szc-form .forminator-ui .forminator-input, .szc-form .forminator-ui .forminator-textarea,
.szc-form .forminator-ui select, .szc-form .forminator-ui .select2-selection {
  min-height: 50px !important; padding: 12px 16px !important; border: 1.5px solid var(--sz-cream-200) !important; border-radius: 12px !important;
  background: var(--sz-cream-50) !important; font-family: var(--font-body) !important; font-size: 15px !important; font-weight: 500 !important;
  color: var(--sz-espresso) !important; box-shadow: none !important; transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast); }
.szc-form .forminator-ui .forminator-textarea { min-height: 120px !important; }
.szc-form .forminator-ui .forminator-input:focus, .szc-form .forminator-ui .forminator-textarea:focus,
.szc-form .forminator-ui .select2-container--open .select2-selection {
  border-color: var(--sz-saffron-600) !important; background: #fff !important; box-shadow: 0 0 0 3px rgba(254, 188, 17, 0.3) !important; outline: none !important; }
.szc-form .forminator-ui .select2-selection__rendered { padding: 0 !important; line-height: 24px !important; color: var(--sz-espresso) !important; }
.szc-form .forminator-ui .select2-selection__arrow { top: 12px !important; right: 12px !important; }
.szc-form .forminator-ui .forminator-input-with-icon .forminator-icon-calendar { color: var(--sz-espresso-500) !important; }
.szc-form .forminator-ui .forminator-button-submit {
  width: 100%; min-height: 54px !important; padding: 16px 28px !important; border: 0 !important; border-radius: 999px !important;
  background: var(--sz-espresso) !important; color: var(--sz-saffron) !important; box-shadow: none !important;
  font-family: var(--font-body) !important; font-size: 14px !important; font-weight: 800 !important; letter-spacing: 0.06em !important; text-transform: uppercase !important;
  transition: background var(--dur-fast); }
.szc-form .forminator-ui .forminator-button-submit:hover { background: var(--sz-espresso-700) !important; }
.szc-form .forminator-ui .forminator-error-message { margin-top: 6px !important; padding: 0 !important; background: none !important;
  font-size: 12.5px !important; font-weight: 600 !important; color: var(--sz-chilli) !important; }
.szc-form .forminator-ui .forminator-response-message { border-radius: 12px !important; font-family: var(--font-body) !important; }
.szc-form .forminator-ui .forminator-description { color: var(--sz-espresso-500) !important; }

/* ============================================================
   MOTION: start states only apply while motion.js is running
   ============================================================ */
.szc-motion .szc-reveal-pending { opacity: 0; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Headlines break evenly instead of leaving one word on the last line */
.elementor-heading-title, .elementor-icon-box-title { text-wrap: balance; }
.elementor-widget-text-editor p { text-wrap: pretty; }
.szc-form .forminator-ui .forminator-input-with-icon .forminator-input { padding-left: 44px !important; }
.szc-form .forminator-ui .forminator-input-with-icon > [class*="forminator-icon-"] { left: 14px !important; }
.szc-step > .elementor-widget { flex: 0 0 auto; width: auto; }
.szc-step > .e-con { flex: 1 1 auto; min-width: 0; }

/* ============================================================
   UX AUDIT FIXES (2026-09-11)
   ============================================================ */

/* Phone home hero: the food leads, so the first screen shows the dish, the
   promise and the Order button together instead of a wall of type. */
@media (max-width: 767px) {
  .szc-hero:not(.szc-hero--split) .szc-hero-art { order: -1; margin: 0 0 4px; }
  .szc-hero:not(.szc-hero--split) .szc-hero-art .szc-kicker { display: none; }
  .szc-hero-img img { max-height: 220px; }
}

/* The decorative disc on page heroes reads as a smudge behind the H1 on a phone */
@media (max-width: 767px) { .szc-page-hero::after { display: none; } }

/* Kitchen tiles in the cuisine bar are whole-tile links with a visible cue */
.szc-kitchen-col { position: relative; }
.szc-view { display: block; margin-top: 10px; font-family: var(--font-body); font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--sz-saffron); }
.szc-view span { display: inline-block; transition: transform var(--dur-fast); }
a.szc-kitchen-col { text-decoration: none; color: inherit; cursor: pointer; }
a.szc-kitchen-col:hover .szc-view span { transform: translateX(4px); }
a.szc-kitchen-col:hover .elementor-icon-box-title { color: var(--sz-saffron) !important; }
a.szc-kitchen-col:focus-visible { outline: 3px solid var(--sz-saffron); outline-offset: -3px; }

/* Rating cards */
.szc-score .elementor-heading-title span { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--sz-espresso-500); margin-left: 2px; }
@media (max-width: 767px) { .szc-channel .elementor-icon-box-icon { margin-bottom: 10px !important; } }
.szc-rating .szc-more p { margin-top: 8px; }

/* Platform logos. The platform name stays in the markup for screen readers;
   the official logo is painted over it. */
.szc-brand .elementor-heading-title { width: var(--logo-w); height: 32px; margin: 0 auto 12px; background: var(--logo) center / auto var(--logo-h) no-repeat; color: transparent !important; font-size: 0 !important; line-height: 0 !important; }
.szc-brand--google { --logo: url(../img/brands/google.svg); --logo-w: 86px; --logo-h: 29px; }
.szc-brand--zomato { --logo: url(../img/brands/zomato.svg); --logo-w: 112px; --logo-h: 24px; }
.szc-brand--swiggy { --logo: url(../img/brands/swiggy.webp); --logo-w: 104px; --logo-h: 31px; }
.szc-channel--swiggy .elementor-icon, .szc-channel--zomato .elementor-icon { background-position: center; background-repeat: no-repeat; }
.szc-channel--swiggy .elementor-icon > *, .szc-channel--zomato .elementor-icon > * { visibility: hidden; }
.szc-channel--swiggy .elementor-icon { background-image: url(../img/brands/swiggy-mark.webp); background-size: auto 27px; }
.szc-channel--zomato .elementor-icon { background-image: url(../img/brands/zomato-white.svg); background-size: 38px auto; }
.szc-nowrap { white-space: nowrap; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Map: a warm placeholder instead of a white void while Google loads */
.szc-map .elementor-custom-embed { border-radius: var(--radius-xl); overflow: hidden;
  background: var(--sz-cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='none' stroke='%23BA4526' stroke-width='2'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / 40px no-repeat; }

/* Header wordmark and footer: readable sizes, finger-sized links */
.site-footer ul { gap: 2px; }
.site-footer ul a { display: inline-flex; align-items: center; min-height: 36px; }
.site-footer__col p a { display: inline-flex; align-items: center; min-height: 36px; }
@media (max-width: 767px) {
  .site-footer__in { grid-template-columns: 1fr 1fr; column-gap: 20px; }
  .site-footer__brand, .site-footer__in > .site-footer__col:last-child { grid-column: 1 / -1; }
}

/* The closing CTA band sits on saffron, so the footer below keeps its own edge */
.szc-cta-band .szc-kicker .elementor-heading-title { color: var(--sz-espresso) !important; }

/* Cuisine bar: every tile starts its icon and title on the same line, whatever the title length */
.szc-kitchen .elementor-icon-box-wrapper { align-items: flex-start; text-align: left; }
.szc-kitchen .elementor-icon-box-title { margin-top: 2px; }
.szc-kitchen .elementor-icon-box-description { line-height: 1.6; }
.szc-kitchen-col > .elementor-widget { width: 100%; }

/* ============================================================
   BLOG (theme templates: home.php, archive.php, single.php)
   Same saffron hero, card and pill language as the Elementor pages.
   ============================================================ */
.szc-blog-hero, .szc-post__header { background: var(--sz-saffron); }
.szc-blog-hero__in, .szc-post__header-in { max-width: 820px; margin: 0 auto; padding: 72px 24px 64px; text-align: center; }
@media (max-width: 767px) { .szc-blog-hero__in, .szc-post__header-in { padding: 44px 20px 40px; } }
.szc-blog-kicker { margin: 0 0 12px; font-family: var(--font-script); font-size: 26px; font-weight: 700; line-height: 1; color: var(--sz-espresso); transform: rotate(-2deg); display: inline-block; }
body .szc-blog-hero h1, body .szc-post__header h1 { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: clamp(34px, 6vw, 56px); line-height: 1.04; color: var(--sz-espresso); text-wrap: balance; }
.szc-blog-intro p { margin: 16px auto 0; max-width: 620px; font-size: 18px; line-height: 1.6; color: var(--sz-espresso-700); }
.szc-blog-cats { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 26px; }
.szc-blog-cats a { display: inline-flex; align-items: center; min-height: 40px; padding: 8px 16px; border-radius: var(--radius-pill); box-shadow: inset 0 0 0 2px var(--sz-espresso);
  font-size: 13px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--sz-espresso); text-decoration: none; }
.szc-blog-cats a:hover { background: rgba(33, 23, 14, 0.08); color: var(--sz-espresso); }
.szc-blog-cats a[aria-current="page"] { background: var(--sz-espresso); color: var(--sz-saffron); }

.szc-blog-list { background: var(--sz-cream-50); }
.szc-blog-list__in { max-width: var(--container-max); margin: 0 auto; padding: 72px 24px 88px; }
@media (max-width: 767px) { .szc-blog-list__in { padding: 44px 20px 56px; } }
.szc-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 1024px) { .szc-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .szc-post-grid { grid-template-columns: 1fr; gap: 16px; } }

.szc-post-card { position: relative; display: flex; flex-direction: column; overflow: hidden; background: #fff; border-radius: var(--radius-lg);
  border: 1px solid rgba(33, 23, 14, 0.07); box-shadow: var(--shadow-sm); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base); }
.szc-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.szc-post-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--sz-cream); }
.szc-post-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-slow) var(--ease-out); }
.szc-post-card:hover .szc-post-card__media img { transform: scale(1.04); }
.szc-post-card__ph { display: grid; place-items: center; height: 100%; }
.szc-post-card__ph img { width: 72px !important; height: 72px !important; opacity: 0.5; }
.szc-post-card__body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.szc-post-card__meta { margin: 0; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sz-espresso-500); }
.szc-post-card__meta span { color: var(--sz-terracotta); }
body .szc-post-card h2.szc-post-card__title { margin: 8px 0 0; font-family: var(--font-body); font-size: 20px; font-weight: 800; line-height: 1.3; letter-spacing: -0.1px; text-wrap: balance; }
.szc-post-card__title a { color: var(--sz-espresso); text-decoration: none; }
.szc-post-card__title a::after { content: ""; position: absolute; inset: 0; }
.szc-post-card__excerpt { margin: 8px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--sz-espresso-500); }
.szc-post-card__more { margin-top: auto; padding-top: 16px; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sz-chilli); }
.szc-post-card:focus-within { outline: 3px solid var(--sz-saffron-600); outline-offset: 2px; }

.szc-pagination { margin-top: 44px; }
.szc-pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.szc-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; padding: 0 14px;
  border-radius: var(--radius-pill); background: #fff; box-shadow: inset 0 0 0 1px var(--sz-cream-200); font-weight: 800; color: var(--sz-espresso); text-decoration: none; }
.szc-pagination .page-numbers.current { background: var(--sz-espresso); color: var(--sz-saffron); box-shadow: none; }

.szc-blog-empty { max-width: 520px; margin: 0 auto; text-align: center; padding: 40px 24px; background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); }
body .szc-blog-empty h2 { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: 28px; color: var(--sz-espresso); }
.szc-blog-empty p { margin: 12px 0 22px; color: var(--sz-espresso-500); }
.szc-blog-empty .szc-pill--dark, .szc-post__cta .szc-pill--dark { background: var(--sz-espresso); color: var(--sz-saffron); }
.szc-pill--line { box-shadow: inset 0 0 0 2px var(--sz-espresso); color: var(--sz-espresso); }
.szc-pill--line:hover { background: var(--sz-espresso); color: var(--sz-saffron); }

/* Single post */
.szc-post__crumbs { margin-bottom: 18px; font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sz-espresso-700); }
.szc-post__crumbs a { color: var(--sz-espresso); text-decoration: underline; text-decoration-color: rgba(33, 23, 14, 0.3); text-underline-offset: 3px; }
.szc-post__meta { margin: 18px 0 0; font-size: 14px; font-weight: 700; color: var(--sz-espresso-700); }
.szc-post__cover { max-width: 1040px; margin: -8px auto 0; padding: 0 24px; }
.szc-post__cover img { display: block; width: 100%; height: auto; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
@media (max-width: 767px) { .szc-post__cover { padding: 0 20px; } }
.szc-post__content { max-width: 720px; margin: 0 auto; padding: 56px 24px 32px; font-size: 18px; line-height: 1.75; color: #3B2A1F; }
@media (max-width: 767px) { .szc-post__content { padding: 36px 20px 24px; font-size: 17px; } }
.szc-post__content > * + * { margin-top: 1.1em; }
body .szc-post__content h2 { margin-top: 1.8em; font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 4vw, 32px); line-height: 1.12; color: var(--sz-espresso); }
body .szc-post__content h3 { margin-top: 1.6em; font-size: 21px; font-weight: 800; color: var(--sz-espresso); }
.szc-post__content a { color: var(--sz-espresso); font-weight: 700; text-decoration: underline; text-decoration-color: var(--sz-saffron); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.szc-post__content a:hover { color: var(--sz-chilli); }
.szc-post__content img, .szc-post__content figure img { border-radius: var(--radius-lg); height: auto; }
.szc-post__content figure { margin-left: 0; margin-right: 0; }
.szc-post__content figcaption { margin-top: 8px; font-size: 14px; color: var(--sz-espresso-500); text-align: center; }
.szc-post__content blockquote { margin-left: 0; padding: 4px 0 4px 20px; border-left: 4px solid var(--sz-saffron); font-size: 20px; font-weight: 600; color: var(--sz-espresso); }
.szc-post__content ul, .szc-post__content ol { padding-left: 1.2em; }
.szc-post__content li + li { margin-top: 0.4em; }
.szc-post__content iframe, .szc-post__content .wp-block-embed { max-width: 100%; }
.szc-post__cta { max-width: 720px; margin: 16px auto 80px; padding: 36px 32px; border-radius: var(--radius-xl); background: var(--sz-saffron); text-align: center; }
@media (max-width: 767px) { .szc-post__cta { margin: 8px 20px 56px; padding: 28px 20px; } }
body .szc-post__cta h2 { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: 30px; line-height: 1.1; color: var(--sz-espresso); }
.szc-post__cta p { margin: 10px 0 20px; color: var(--sz-espresso-700); }
.szc-post__cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
body h2.szc-more-title { margin: 0 0 28px; font-family: var(--font-display); font-weight: 400; font-size: 32px; text-align: center; color: var(--sz-espresso); }

/* ============================================================
   HERO PLATE CAROUSEL ([szc_plates])
   Plates sit on a lazy susan whose pivot is to the right of the stage.
   --a is each plate's angle around that pivot: 0 is on show,
   negative waits above, positive has left below.
   ============================================================ */
.szc-plates { position: relative; width: 100%; max-width: 500px; margin: 0 auto; aspect-ratio: 1; }
.szc-plates__stage { position: absolute; inset: 0; }
.szc-plates .szc-plate {
  --in: 70deg; --out: -70deg;
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  transform-origin: 175% 50%;          /* desktop: pivot to the right, plates arrive from above and leave below */
  transform: rotate(var(--in));
  opacity: 0; filter: drop-shadow(0 26px 34px rgba(33, 23, 14, 0.32));
  transition: transform 1.15s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.7s ease;
  will-change: transform, opacity;
}
.szc-plates .szc-plate.is-next  { transform: rotate(var(--in)); opacity: 0; }
.szc-plates .szc-plate.is-active { transform: rotate(0deg); opacity: 1; transition-delay: 0.08s, 0.1s; }
.szc-plates .szc-plate.is-leaving { transform: rotate(var(--out)); opacity: 0; transition-duration: 1.15s, 0.6s; transition-delay: 0s, 0.35s; }
.szc-plates .szc-plate.is-reset { transition: none !important; }
@media (max-width: 1024px) {
  /* stacked hero: pivot below the plate, so plates roll in from the right and out to the left, clear of the text */
  .szc-plates .szc-plate { --in: 38deg; --out: -38deg; transform-origin: 50% 260%; }
}
/* The hero column clips the lazy susan so plates arrive and leave from out of frame */
.szc-hero-art { overflow: visible; }
.szc-hero { overflow: hidden; }
@media (max-width: 1024px) { .szc-plates { max-width: 400px; } }
@media (max-width: 767px) { .szc-plates { max-width: 260px; } .szc-hero:not(.szc-hero--split) .szc-hero-art { margin-bottom: 8px; } }
@media (prefers-reduced-motion: reduce) {
  .szc-plates .szc-plate { transform: none; transition: opacity 0.6s ease; }
}
