/* ============================================================
   CGs Burgers & Pizzas — shared styles
   Dark theme · orange accent · Urbanist
============================================================ */
:root {
  --orange: #F47526;
  --orange-deep: #D85E16;
  --bg: #FBF7F1;
  --surface: #FFFFFF;
  --surface-2: #F4EEE5;
  --ink: #1B1714;
  --white: #FFFFFF;
  --muted: #6E6459;
  --line: rgba(27, 23, 20, 0.12);
  --maxw: 1180px;
  --radius: 16px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.8);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Urbanist', 'Inter', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; letter-spacing: 0.01em;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  line-height: 1; white-space: nowrap;
}
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 10px 30px -10px rgba(244, 117, 38, 0.6); }
.btn-orange:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(244, 117, 38, 0.7); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(27, 23, 20, 0.22); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
/* Ghost buttons over dark media (hero/band/cards) stay light */
.hero .btn-ghost, .band .btn-ghost, .rest-card .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.hero .btn-ghost:hover, .band .btn-ghost:hover, .rest-card .btn-ghost:hover { color: var(--orange); border-color: var(--orange); background: rgba(255,255,255,0.06); }
.btn svg { width: 18px; height: 18px; }

/* Eyebrow + headings */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); display: inline-block; }
h1, h2, h3 { line-height: 1.08; font-weight: 800; letter-spacing: -0.02em; overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
.h-xl { font-size: clamp(32px, 7vw, 76px); font-weight: 900; }
.h-lg { font-size: clamp(30px, 4.4vw, 50px); }
.h-md { font-size: clamp(22px, 2.6vw, 30px); }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); }
.muted { color: var(--muted); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 241, 0.88); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 19px; letter-spacing: 0.04em; }
.nav__brand img { width: 42px; height: 42px; border-radius: 50%; }
.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav__links a { font-weight: 600; font-size: 15px; color: var(--muted); transition: color .18s ease; }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__cta .btn { padding: 11px 22px; font-size: 14px; }
.nav__toggle { display: none; align-items: center; justify-content: center; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 6px; margin-right: -6px; border-radius: 10px; transition: background .18s ease; }
.nav__toggle:hover { background: rgba(27, 23, 20, 0.06); }
.nav__toggle svg { width: 26px; height: 26px; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; background: #0E0E0E; }
.hero__bg img, .hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.72) 55%, rgba(14,14,14,0.95) 100%);
}
.hero__inner { position: relative; z-index: 1; padding: 120px 0 90px; max-width: 760px; }
.hero h1 { margin: 0 0 26px; text-transform: uppercase; color: var(--white); }
.hero .lead { color: #e9e9e9; max-width: 540px; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- FEATURE (image + text) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.feature--reverse .feature__media { order: 2; }
.feature__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.feature__media:hover img { transform: scale(1.04); }
.feature h2 { margin-bottom: 20px; }
.feature p + p { margin-top: 16px; }

/* ---------- BAND (full-width image strip) ---------- */
.band { position: relative; height: clamp(280px, 38vw, 460px); overflow: hidden; }
.band img { width: 100%; height: 100%; object-fit: cover; }
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,14,14,0.7), rgba(14,14,14,0.15)); }
.band__caption { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; }
.band__caption .container { width: 100%; }
.band__caption h2 { max-width: 620px; color: var(--white); }

/* ---------- RESTAURANTS ---------- */
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.rest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.rest-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
.rest-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--line); isolation: isolate;
}
.rest-card__bg { position: absolute; inset: 0; z-index: -2; }
.rest-card__bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.rest-card:hover .rest-card__bg img { transform: scale(1.05); }
.rest-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(14,14,14,0.05), rgba(14,14,14,0.55) 45%, rgba(14,14,14,0.94)); }
.rest-card__body { padding: 30px; color: var(--white); }
.rest-card__tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.rest-card__name { font-size: 30px; font-weight: 900; margin-bottom: 6px; color: var(--white); }
.rest-card__addr { color: rgba(255,255,255,0.82); font-size: 15px; margin-bottom: 20px; }
.rest-card__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.rest-card__actions .btn { font-size: 14px; padding: 12px 22px; }

/* ---------- INFO / hours / address ---------- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.info-card h3 { font-size: 22px; margin-bottom: 18px; }
.hours { list-style: none; }
.hours li { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { color: var(--muted); }
.hours li b { font-weight: 700; }
.detail-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.detail-row:last-child { border-bottom: 0; }
.detail-row svg { width: 20px; height: 20px; color: var(--orange); flex: none; margin-top: 2px; }
.detail-row a { color: var(--ink); }
.detail-row a:hover { color: var(--orange); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 320px; height: 100%; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(0.2) contrast(1.05); }

/* badge */
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(244,117,38,0.12); color: var(--orange); border: 1px solid rgba(244,117,38,0.3); padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; }

/* ---------- GALLERY ---------- */
.gallery { columns: 3; column-gap: 16px; }
.gallery img { width: 100%; border-radius: 12px; margin-bottom: 16px; break-inside: avoid; transition: transform .4s ease, filter .4s ease; filter: saturate(1.02); }
.gallery img:hover { transform: scale(1.02); filter: saturate(1.12) brightness(1.05); }
.gallery-preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-preview a { border-radius: 12px; overflow: hidden; aspect-ratio: 1; }
.gallery-preview img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-preview a:hover img { transform: scale(1.07); }

/* ---------- CONTACT strip ---------- */
.contact-strip { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-strip .inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.contact-list { display: flex; flex-wrap: wrap; gap: 30px; }
.contact-list a { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.contact-list svg { width: 22px; height: 22px; color: var(--orange); }

/* ---------- CATERING hero ---------- */
.cater-hero { text-align: center; max-width: 720px; margin: 0 auto; }
.cater-hero .h-xl { text-transform: uppercase; margin-bottom: 18px; }
.cater-stat { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--orange); margin: 8px 0 26px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--surface-2); border-top: 1px solid var(--line); padding: 64px 0 36px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer__brand img { width: 56px; height: 56px; border-radius: 50%; margin-bottom: 16px; }
.footer__brand p { color: var(--muted); max-width: 320px; font-size: 15px; }
.footer h4 { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: var(--ink); font-size: 15px; transition: color .18s ease; }
.footer ul a:hover { color: var(--orange); }
.footer__social { display: flex; gap: 14px; margin-top: 6px; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: all .2s ease; }
.footer__social a:hover { border-color: var(--orange); background: var(--orange); color: #fff; transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.footer__bottom a { color: var(--orange); font-weight: 600; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@keyframes navDrop { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; gap: 2px;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
    box-shadow: 0 26px 44px -22px rgba(27, 23, 20, 0.30);
    padding: 12px 16px 18px;
    animation: navDrop .22s ease;
  }
  .nav.open .nav__links li { width: 100%; list-style: none; }
  .nav.open .nav__links a {
    display: block; padding: 14px 14px; font-size: 16px; font-weight: 600;
    color: var(--ink); border-radius: 12px; transition: background .16s ease, color .16s ease;
  }
  .nav.open .nav__links li + li { border-top: 1px solid var(--line); }
  .nav.open .nav__links a:hover, .nav.open .nav__links a.is-active { color: var(--orange); background: rgba(244, 117, 38, 0.07); }
  .feature, .info-grid, .rest-grid, .rest-grid.grid-3 { grid-template-columns: 1fr; }
  .feature--reverse .feature__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery { columns: 2; }
  .gallery-preview { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .gallery { columns: 1; }
  .hero { min-height: 78vh; }
  .contact-list { gap: 18px; }
}
