/* ============================================================
   Phoenician Garden — UI Kit (pg-ui-kit.css)
   Unified design system: tokens, components, utilities.
   Generated from the official UI Kit — source of truth.
   ============================================================ */

:root {
  /* ---------- Brand palette ---------- */
  --terracotta: #C4704B;        /* Primary accent — CTAs, hover, links */
  --terracotta-dark: #B5613D;   /* Hover / active variant */
  --olive: #6B7C4E;             /* Secondary accent — badges, tags */
  --olive-dark: #546340;        /* Olive hover */
  --gold: #C9A96E;              /* Tertiary accent — borders, decorative */
  --gold-light: #D4B97E;        /* Subtle highlights */
  --cream: #F5F0EB;             /* Section backgrounds, alternating rows */
  --sand: #E8DFD5;              /* Card backgrounds, subtle surfaces */
  --charcoal: #2C2C2C;          /* Body text, dark UI */
  --dark: #1A1A1A;              /* Darkest backgrounds, hero overlays */
  --off-white: #FAFAF8;         /* Page background */
  --white: #FFFFFF;

  /* ---------- Semantic colors ---------- */
  --bg-page: var(--off-white);
  --bg-section-light: var(--white);
  --bg-section-cream: var(--cream);
  --bg-section-dark: var(--dark);
  --bg-card: var(--white);
  --bg-card-subtle: var(--sand);

  --fg-default: var(--charcoal);
  --fg-muted: #666666;
  --fg-subtle: #999999;
  --fg-on-dark: var(--white);
  --fg-on-dark-muted: rgba(255, 255, 255, 0.7);

  --accent: var(--terracotta);
  --accent-hover: var(--terracotta-dark);
  --accent-soft: var(--gold);
  --accent-em: var(--gold);          /* Used for italic <em> in H1s */

  --border-subtle: rgba(0, 0, 0, 0.06);
  --border-default: var(--sand);
  --border-strong: var(--charcoal);

  /* ---------- Type families ---------- */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---------- Type scale ---------- */
  --fs-display: clamp(48px, 6.5vw, 84px);   /* Hero greetings */
  --fs-h1: clamp(40px, 5vw, 64px);          /* Page H1 */
  --fs-h2: clamp(32px, 3.6vw, 48px);        /* Section title */
  --fs-h3: 24px;                            /* Card titles */
  --fs-h4: 18px;                            /* Sub-card titles */
  --fs-lead: 18px;                          /* Section descriptions */
  --fs-body: 16px;                          /* Default body */
  --fs-small: 14px;                         /* Notes, captions */
  --fs-eyebrow: 12px;                       /* Section tags */

  /* ---------- Type weights ---------- */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* ---------- Line heights ---------- */
  --lh-tight: 1.1;
  --lh-snug: 1.25;
  --lh-normal: 1.6;

  /* ---------- Letter spacing ---------- */
  --ls-eyebrow: 1.5px;     /* Uppercase tags */
  --ls-tight: -0.3px;      /* Logo, large headings */
  --ls-display: -1px;      /* Hero display */

  /* ---------- Spacing (8-pt scale) ---------- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* ---------- Radii ---------- */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* ---------- Shadows ---------- */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.18);
  --shadow-card-hover: 0 16px 40px rgba(0, 0, 0, 0.10);

  /* ---------- Motion ---------- */
  --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.2s;
  --dur-default: 0.3s;
  --dur-slow: 0.6s;

  /* ---------- Layout ---------- */
  --container-max: 1280px;
  --container-narrow: 900px;
  --section-pad-y: clamp(64px, 8vw, 120px);
  --section-pad-x: clamp(20px, 4vw, 64px);
  --bp-tablet: 1024px;
  --bp-mobile: 768px;
  --bp-small: 480px;
  --nav-height: 76px;
}

/* ===========================================================
   Base + semantic typography
   =========================================================== */

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--fg-default);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, .pg-h1 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--charcoal);
  text-wrap: balance;
}

h2, .pg-h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--charcoal);
  text-wrap: balance;
}

h3, .pg-h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  color: var(--charcoal);
}

h4, .pg-h4 {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  color: var(--charcoal);
}

p, .pg-body-text {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--fg-default);
}

.pg-lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--fg-muted);
}

.pg-eyebrow,
.pg-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--terracotta);
}

.pg-text-accent,
h1 em, h2 em, h3 em {
  color: var(--gold);
  font-style: italic;
  font-weight: inherit;
}

a { color: inherit; text-decoration: none; }
a.inline-link {
  color: var(--terracotta);
  font-weight: var(--fw-semibold);
  transition: color var(--dur-fast) var(--ease-default);
}
a.inline-link:hover { color: var(--terracotta-dark); }

small, .pg-small { font-size: var(--fs-small); color: var(--fg-muted); }


* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--off-white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== NAV ===== */
.pg-nav { position: fixed; top:0; left:0; right:0; z-index: 999; background: rgba(255,255,255,0.97); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 76px; transition: box-shadow .3s, background .3s; }
.pg-nav.pg-scrolled { box-shadow: var(--shadow-md); background: rgba(255,255,255,0.99); }
.pg-nav-logo img { height: 44px; width: auto; }
.pg-nav-center { display: flex; gap: 36px; }
.pg-nav-center a { font-size: 15px; font-weight: var(--fw-semibold); color: var(--charcoal); letter-spacing: 0.3px; transition: color .2s; position: relative; padding: 4px 0; }
.pg-nav-center a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--terracotta); transition: width .3s; }
.pg-nav-center a:hover { color: var(--terracotta); }
.pg-nav-center a:hover::after, .pg-nav-center a.pg-active::after { width: 100%; }
.pg-nav-center a.pg-active { color: var(--terracotta); }
.pg-nav-right { display: flex; align-items: center; gap: 18px; }
.pg-nav-status { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: var(--fw-medium); color: var(--charcoal); }
.pg-nav-status.pg-open .pg-status-dot { width: 8px; height: 8px; border-radius: var(--r-pill); background: var(--olive); box-shadow: 0 0 0 4px rgba(107,124,78,0.18); }
.pg-status-sub { color: var(--fg-muted); font-size: 12px; }

/* ===== BUTTONS ===== */
.pg-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: var(--r-pill); font-family: var(--font-body); font-size: 15px; font-weight: var(--fw-semibold); letter-spacing: 0.3px; border: none; cursor: pointer; transition: all .25s var(--ease-default); }
.pg-btn-sm { padding: 10px 22px; font-size: 14px; }
.pg-btn-primary { background: var(--terracotta); color: #fff; }
.pg-btn-primary:hover { background: var(--terracotta-dark); box-shadow: 0 8px 20px rgba(196,112,75,0.35); }
.pg-btn-secondary { background: transparent; color: var(--terracotta); border: 1.5px solid var(--terracotta); }
.pg-btn-secondary:hover { background: var(--terracotta); color: #fff; }
.pg-btn-on-cream { color: var(--charcoal); border-color: var(--sand); }
.pg-btn-on-cream:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.pg-btn-gold { background: var(--gold); color: var(--dark); }
.pg-btn-gold:hover { background: var(--gold-light); box-shadow: 0 8px 20px rgba(201,169,110,0.35); }

/* ===== HERO ===== */
.pg-hero { padding: 140px 64px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 1440px; margin: 0 auto; align-items: center; min-height: 700px; }
.pg-hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--sand); color: var(--charcoal); border-radius: var(--r-pill); font-size: 13px; font-weight: var(--fw-semibold); margin-bottom: 28px; animation: fadeUp .8s var(--ease-default) both; }
.pg-hero-greeting { font-family: var(--font-heading); font-size: clamp(40px,5.4vw,72px); font-weight: var(--fw-bold); line-height: 1.05; letter-spacing: -1px; color: var(--charcoal); }
.pg-greeting-word { display: inline-block; opacity: 0; animation: fadeUp .7s var(--ease-default) forwards; }
.pg-greeting-word.pg-accent { color: var(--gold); font-style: italic; }
.pg-hero-sub { font-size: 18px; line-height: 1.55; color: var(--fg-muted); margin: 24px 0 32px; max-width: 520px; opacity: 0; animation: fadeUp .8s var(--ease-default) 1.4s forwards; }
.pg-hero-actions { display: flex; gap: 14px; opacity: 0; animation: fadeUp .8s var(--ease-default) 1.6s forwards; }
.pg-hero-image-col { position: relative; }
.pg-hero-carousel { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.pg-hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s var(--ease-default); display: flex; align-items: flex-end; padding: 24px; }
.pg-hero-slide.pg-active { opacity: 1; }
.pg-hero-food-label { background: rgba(255,255,255,0.95); color: var(--charcoal); padding: 8px 18px; border-radius: var(--r-pill); font-size: 13px; font-weight: var(--fw-semibold); }
.pg-hero-badge { position: absolute; bottom: -28px; left: -28px; background: #fff; padding: 16px 22px; border-radius: var(--r-lg); box-shadow: var(--shadow-xl); display: flex; gap: 14px; align-items: center; animation: fadeUp .8s var(--ease-default) 1.8s both; }
.pg-hero-badge-stars { color: var(--gold); font-size: 16px; letter-spacing: 1px; }
.pg-hero-badge-text { font-family: var(--font-heading); font-size: 18px; font-weight: var(--fw-bold); }
.pg-hero-badge-sub { font-size: 12px; color: var(--fg-muted); }

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

/* ===== MARQUEE ===== */
.pg-marquee { background: var(--dark); color: #fff; padding: 18px 0; overflow: hidden; }
.pg-marquee-track { display: flex; align-items: center; white-space: nowrap; animation: scroll 40s linear infinite; }
.pg-marquee-item { font-size: 14px; font-weight: var(--fw-medium); letter-spacing: 0.4px; flex-shrink: 0; padding: 0 28px; }
.pg-marquee-promo { color: var(--gold-light); font-weight: var(--fw-semibold); }
.pg-dot { color: var(--gold); font-size: 10px; line-height: 1; flex-shrink: 0; }
@keyframes scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ===== SECTION SCAFFOLD ===== */
.pg-section { padding: 100px 64px; max-width: 1440px; margin: 0 auto; }
.pg-section-dark { background: var(--dark); max-width: none; }
.pg-section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.pg-eyebrow { font-size: 12px; font-weight: var(--fw-semibold); letter-spacing: 1.5px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 14px; }
.pg-section-title { font-family: var(--font-heading); font-size: clamp(32px,3.6vw,48px); font-weight: var(--fw-bold); line-height: 1.1; letter-spacing: -0.3px; color: var(--charcoal); margin-bottom: 16px; }
.pg-section-title em { color: var(--gold); font-style: italic; }
.pg-on-dark { color: #FAFAF8 !important; }
.pg-on-dark-muted { color: rgba(255,255,255,0.7) !important; }
.pg-section-desc { font-size: 18px; line-height: 1.55; color: var(--fg-muted); max-width: 620px; margin: 0 auto; }
.pg-section-footer { text-align: center; margin-top: 48px; }
.pg-fineprint { font-size: 13px; color: var(--fg-muted); margin-top: 16px; }
.pg-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.pg-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.pg-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }

.pg-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease-default), transform .6s var(--ease-default); }
.pg-reveal.pg-visible { opacity: 1; transform: translateY(0); }

/* ===== FEATURED FOOD CARDS ===== */
.pg-featured { background: var(--off-white); }
.pg-food-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .3s var(--ease-default), box-shadow .3s var(--ease-default); }
.pg-food-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.pg-food-card-img { aspect-ratio: 4/3; position: relative; transition: transform .6s var(--ease-default); }
.pg-food-card:hover .pg-food-card-img { transform: scale(1.03); }
.pg-food-card-tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.95); color: var(--charcoal); padding: 6px 14px; border-radius: var(--r-pill); font-size: 12px; font-weight: var(--fw-semibold); }
.pg-food-card-body { padding: 22px 24px 24px; }
.pg-food-card-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.pg-food-card-name { font-family: var(--font-heading); font-size: 22px; font-weight: var(--fw-bold); }
.pg-food-card-price { font-family: var(--font-heading); font-size: 20px; font-weight: var(--fw-bold); color: var(--terracotta); }
.pg-food-card-desc { font-size: 14px; line-height: 1.55; color: var(--fg-muted); margin-bottom: 14px; }
.pg-food-card-cta { font-size: 13px; font-weight: var(--fw-semibold); color: var(--terracotta); letter-spacing: 0.3px; transition: color .2s; }
.pg-food-card-cta:hover { color: var(--terracotta-dark); }

/* ===== SPECIALS ===== */
.pg-specials { background: var(--cream); max-width: none; padding: 100px 64px; }
.pg-special-card { background: #fff; border-radius: var(--r-lg); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease-default), box-shadow .3s var(--ease-default); }
.pg-special-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.pg-special-icon { color: var(--terracotta); margin: 0 auto 16px; }
.pg-special-name { font-family: var(--font-heading); font-size: 22px; font-weight: var(--fw-bold); margin-bottom: 10px; }
.pg-special-desc { font-size: 14px; line-height: 1.55; color: var(--fg-muted); margin-bottom: 16px; }
.pg-special-price { display: inline-block; background: var(--charcoal); color: var(--gold-light); padding: 6px 16px; border-radius: var(--r-pill); font-size: 13px; font-weight: var(--fw-bold); letter-spacing: 0.5px; }

/* ===== HERO DISCOUNT ===== */
.pg-hero-discount { background: linear-gradient(135deg, #2a4a6b 0%, #1a3050 100%); padding: 36px 64px; }
.pg-hero-discount-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; gap: 28px; }
.pg-hero-discount-badge { background: #fff; color: var(--charcoal); padding: 10px 20px; border-radius: var(--r-pill); font-size: 13px; font-weight: var(--fw-bold); flex-shrink: 0; }
.pg-hero-discount-desc { color: #fff; font-size: 15px; line-height: 1.55; }

/* ===== DESSERTS ===== */
.pg-desserts { background: var(--off-white); }
.pg-dessert-card { background: var(--cream); border-radius: var(--r-xl); overflow: hidden; display: grid; grid-template-columns: 1fr 1.2fr; transition: transform .3s var(--ease-default); }
.pg-dessert-card:hover { transform: translateY(-4px); }
.pg-dessert-img { background-size: cover; background-position: center; min-height: 240px; }
.pg-dessert-body { padding: 32px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.pg-dessert-body h3 { font-family: var(--font-heading); font-size: 24px; font-weight: var(--fw-bold); }
.pg-dessert-body p { font-size: 14px; line-height: 1.55; color: var(--fg-muted); }
.pg-badge-olive { display: inline-block; background: var(--olive); color: #fff; padding: 5px 12px; border-radius: var(--r-pill); font-size: 11px; font-weight: var(--fw-semibold); letter-spacing: 0.5px; }
.pg-link { font-size: 14px; font-weight: var(--fw-semibold); color: var(--terracotta); transition: color .2s; }
.pg-link:hover { color: var(--terracotta-dark); }
.pg-link-gold { color: var(--gold-light); }
.pg-link-gold:hover { color: #fff; }

/* ===== ABOUT ===== */
.pg-about { background: var(--cream); max-width: none; padding: 100px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pg-about > * { max-width: 640px; }
.pg-about-images { position: relative; height: 480px; }
.pg-about-img { position: absolute; border-radius: var(--r-lg); background-size: cover; background-position: center; box-shadow: var(--shadow-md); }
.pg-about-img-1 { width: 70%; height: 75%; top: 0; left: 0; transform: rotate(-2deg); }
.pg-about-img-2 { width: 60%; height: 60%; bottom: 0; right: 0; transform: rotate(3deg); }
.pg-about-text p { color: var(--fg-default); margin-bottom: 18px; line-height: 1.65; max-width: 520px; }
.pg-stat-row { display: flex; gap: 40px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--sand); }
.pg-stat-num { font-family: var(--font-heading); font-size: 36px; font-weight: var(--fw-bold); color: var(--terracotta); line-height: 1; }
.pg-stat-label { font-size: 13px; font-weight: var(--fw-medium); color: var(--fg-muted); margin-top: 6px; }

/* ===== BELLY DANCE ===== */
.pg-belly { position: relative; background: var(--dark); max-width: none; padding: 120px 64px; overflow: hidden; }
.pg-belly-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.pg-belly-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.65) 100%); }
.pg-belly-inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; color: #fff; }
.pg-belly-title { font-family: var(--font-heading); font-size: clamp(36px,4vw,52px); font-weight: var(--fw-bold); line-height: 1.1; letter-spacing: -0.3px; margin-bottom: 24px; color: #fff; }
.pg-belly-title em { color: var(--gold); font-style: italic; }
.pg-belly-dates { margin-bottom: 32px; }
.pg-belly-pill { display: inline-block; padding: 10px 24px; border-radius: var(--r-pill); background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 14px; font-weight: var(--fw-semibold); }
.pg-countdown { display: flex; justify-content: center; gap: 18px; margin-bottom: 36px; }
.pg-countdown-unit { background: rgba(0,0,0,0.4); border: 1px solid rgba(201,169,110,0.4); border-radius: 12px; padding: 18px 22px; min-width: 90px; }
.pg-countdown-num { font-family: var(--font-heading); font-size: 40px; font-weight: var(--fw-bold); color: var(--gold); line-height: 1; }
.pg-countdown-label { font-size: 11px; font-weight: var(--fw-semibold); letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 6px; }
.pg-belly-note { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 24px; }

/* ===== ORDER ===== */
.pg-order { padding: 100px 64px; }
.pg-order-direct-cta { display: block; max-width: 720px; margin: 0 auto 16px; background: linear-gradient(135deg, #B5613D 0%, #6a3018 100%); color: #fff; padding: 40px 44px; border-radius: var(--r-xl); box-shadow: var(--shadow-xl); transition: transform .3s var(--ease-default); }
.pg-order-direct-cta:hover { transform: translateY(-4px); }
.pg-order-direct-cta h3 { font-family: var(--font-heading); font-size: 30px; font-weight: var(--fw-bold); margin-bottom: 10px; }
.pg-order-direct-cta p { font-size: 15px; line-height: 1.55; margin-bottom: 18px; }
.pg-promo-pill { color: var(--gold-light); font-weight: var(--fw-bold); }
.pg-cta-arrow { display: inline-flex; padding: 12px 26px; background: rgba(0,0,0,0.28); border: 1.5px solid rgba(255,255,255,0.5); border-radius: var(--r-pill); font-weight: var(--fw-semibold); font-size: 14px; }
.pg-order-sub { text-align: center; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 56px; }
.pg-delivery-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--r-lg); padding: 32px 24px; text-align: center; color: #fff; transition: all .3s var(--ease-default); }
.pg-delivery-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); border-color: rgba(201,169,110,0.4); }
.pg-delivery-logo { color: var(--gold); margin: 0 auto 14px; display: inline-block; }
.pg-delivery-card h3 { font-family: var(--font-heading); font-size: 22px; margin-bottom: 8px; }
.pg-delivery-card p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 14px; }

/* ===== CATERING ===== */
.pg-catering { background: var(--off-white); padding: 100px 64px; }
.pg-catering-card { background: linear-gradient(135deg, #2C2C2C 0%, #3a4530 100%); border-radius: var(--r-xl); padding: 56px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; color: #fff; box-shadow: var(--shadow-lg); }
.pg-catering-card h2 { font-family: var(--font-heading); font-size: 40px; font-weight: var(--fw-bold); line-height: 1.1; letter-spacing: -0.3px; margin-bottom: 16px; color: #fff; }
.pg-catering-card p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.6; margin-bottom: 24px; }
.pg-catering-types { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.pg-catering-type { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18); padding: 6px 14px; border-radius: var(--r-pill); font-size: 13px; font-weight: var(--fw-medium); color: #fff; }
.pg-catering-action { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.pg-catering-sub { font-size: 13px; color: rgba(255,255,255,0.6); }
.pg-catering-image { background-size: cover; background-position: center; aspect-ratio: 1; border-radius: var(--r-lg); }

/* ===== REVIEWS ===== */
.pg-reviews { background: var(--off-white); }
.pg-review-card { background: var(--cream); border-radius: var(--r-lg); padding: 32px; transition: transform .3s var(--ease-default); }
.pg-review-card:hover { transform: translateY(-4px); }
.pg-review-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.pg-review-text { font-size: 15px; line-height: 1.6; color: var(--charcoal); margin-bottom: 18px; font-style: italic; }
.pg-review-author { font-family: var(--font-heading); font-size: 17px; font-weight: var(--fw-bold); }
.pg-review-source { font-size: 11px; font-weight: var(--fw-semibold); letter-spacing: 1.2px; text-transform: uppercase; color: var(--terracotta); margin-top: 4px; }

/* ===== FOOTER ===== */
.pg-footer { background: var(--dark); color: #fff; padding: 80px 64px 40px; }
.pg-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; max-width: 1280px; margin: 0 auto 48px; }
.pg-footer-brand img { height: 44px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.pg-footer-brand p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6; max-width: 360px; }
.pg-footer h4 { font-family: var(--font-heading); font-size: 16px; font-weight: var(--fw-bold); margin-bottom: 14px; color: var(--gold-light); }
.pg-footer p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 6px; }
.pg-footer a { color: rgba(255,255,255,0.85); transition: color .2s; }
.pg-footer a:hover { color: var(--gold); }
.pg-footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.10); display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.45); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pg-hero { grid-template-columns: 1fr; padding: 120px 32px 60px; }
  .pg-section, .pg-specials, .pg-about, .pg-belly, .pg-order, .pg-catering, .pg-footer { padding-left: 32px; padding-right: 32px; }
  .pg-grid-3, .pg-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pg-about, .pg-catering-card, .pg-dessert-card { grid-template-columns: 1fr; }
  .pg-nav-center { display: none; }
  .pg-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .pg-grid-2, .pg-grid-3, .pg-grid-4 { grid-template-columns: 1fr; }
  .pg-countdown { flex-wrap: wrap; gap: 10px; }
  .pg-countdown-unit { min-width: 70px; padding: 12px 14px; }
  .pg-footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Catering Callout ---------- */
.pg-catering-callout {
  background: var(--cream);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-7);
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
}
.pg-catering-callout p {
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--fg-default);
  margin: 0;
}

/* ---------- Catering Cross-Link Grid ---------- */
.pg-catering-crosslinks {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: var(--sp-7) var(--sp-6);
  margin-top: var(--sp-7);
}
.pg-catering-crosslinks h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin-bottom: var(--sp-5);
}
.pg-catering-crosslinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-4);
}
.pg-catering-crosslinks-grid a {
  display: block;
  background: var(--white);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--fg-default);
  transition: all var(--dur-default) var(--ease-default);
  box-shadow: var(--shadow-xs);
}
.pg-catering-crosslinks-grid a:hover {
  color: var(--terracotta);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.pg-catering-crosslinks-grid a span {
  display: block;
  font-size: var(--fs-small);
  color: var(--fg-muted);
  font-weight: var(--fw-regular);
  margin-top: 4px;
}
