/* ═══ 디자인 벤치마크: awesomeparty.co.kr ═══
   Primary: 딥 오렌지 #c85c1a / 헤더: #1c1e25 / 배경: #ffffff
   폰트: Noto Sans KR (Roboto 계열)
   카드: radius 4px, 얇은 선 또는 shadow 없음
   레이아웃: max-width 1200px, tight grid
   섹션 padding: 5rem~7rem / 이미지 퍼스트 설계
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;700;900&display=swap');

:root {
  --primary:       #c85c1a;
  --primary-dark:  #a04816;
  --primary-light: #e07a3a;
  --bg:            #ffffff;
  --bg-alt:        #f6f6f6;
  --bg-dark:       #1c1e25;
  --bg-dark2:      #14161c;
  --text:          #1a1a1a;
  --text-muted:    #666666;
  --text-light:    #999999;
  --border:        #e0e0e0;
  --card-radius:   4px;
  --btn-radius:    3px;
  --shadow-card:   0 1px 4px rgba(0,0,0,0.10);
  --shadow-hover:  0 4px 16px rgba(0,0,0,0.15);
  --max-w:         1200px;
  --section-pad:   6rem;
  --header-h:      68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', Dotum, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: break-word;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 900; line-height: 1.2; letter-spacing: -0.03em; }
h1 { font-size: clamp(1.875rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1rem; }

/* ── Section Label ── */
.section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-header { margin-bottom: 2.5rem; }
.section-header .desc {
  max-width: 520px;
  color: var(--text-muted);
  margin-top: 0.625rem;
  font-weight: 300;
  font-size: 0.9rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover { border-color: var(--text); }
.btn-kakao { background: #FEE500; color: #3A1D1D; border-radius: var(--btn-radius); }
.btn-kakao:hover { background: #f0d800; }

/* ── Fade-in-up ── */
.fade-in-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.fade-in-up.is-visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   HEADER — dark bar
══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  transition: background 0.3s;
}
.site-header.scrolled { background: var(--bg-dark2); }
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo img { height: 38px; width: auto; }

/* Nav */
.site-nav { display: flex; align-items: center; gap: 0.125rem; flex: 1; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.45rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  border-radius: 2px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link .caret { font-size: 0.55rem; transition: transform 0.2s; }
.nav-item:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  padding: 0.375rem;
  min-width: 170px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: all 0.18s ease;
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.825rem;
  font-weight: 400;
  border-radius: 2px;
  color: var(--text);
  transition: all 0.12s;
}
.dropdown a:hover { background: var(--bg-alt); color: var(--primary); }

/* Header actions */
.header-actions {
  display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0;
}
.header-actions .btn { padding: 0.5rem 1.1rem; font-size: 0.8rem; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.85); border-radius: 2px; transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--bg-dark);
  z-index: 999;
  overflow-y: auto;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}
.mobile-nav a.sub {
  padding-left: 1.25rem;
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.mobile-nav .mobile-actions {
  display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem;
}
.mobile-nav .mobile-actions .btn { justify-content: center; }

@media (max-width: 768px) {
  .site-nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: #fff; padding: 2rem 1.5rem; max-width: 800px; }
.hero-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 0.4rem;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.hero-slogan {
  font-size: clamp(0.95rem, 2.2vw, 1.125rem);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.5rem;
}
.hero-phone {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #ff5500;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  display: block;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.hero-phone:hover { color: #ff7733; }
.hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; flex-wrap: wrap;
}

/* Sub-page hero */
.page-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: var(--header-h);
}
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.page-hero-content { position: relative; z-index: 2; color: #fff; padding: 0 1.5rem; }
.page-hero-content h1 { font-size: clamp(1.625rem, 3.5vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: 0.4rem; }
.page-hero-content p { color: rgba(255,255,255,0.75); font-weight: 300; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-section { background: var(--bg); padding: var(--section-pad) 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
}
.service-card {
  background: #fff;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s;
}
.service-card:hover { background: #fafafa; }
.service-card .svc-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.12em;
}
.service-card h3 { font-size: 1.05rem; color: var(--text); }
.service-card p { font-size: 0.85rem; font-weight: 300; color: var(--text-muted); line-height: 1.65; }
.service-card .more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  padding-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border-top: 1px solid var(--border);
}
.service-card:hover .more { gap: 0.5rem; }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   CATERING PORTFOLIO
══════════════════════════════════════ */
.catering-section { background: var(--bg-alt); padding: var(--section-pad) 0; }
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.view-all {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  border-bottom: 1px solid var(--text);
  padding-bottom: 1px;
}
.view-all:hover { color: var(--primary); border-color: var(--primary); }

.catering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width: 1024px) { .catering-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .catering-grid { grid-template-columns: 1fr; } }

.catering-card {
  background: #fff;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: all 0.2s ease;
}
.catering-card:hover { background: #fafafa; }
.catering-card .card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.catering-card .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.catering-card:hover .card-img img { transform: scale(1.04); }
.card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.catering-card:hover .card-overlay { background: rgba(28,30,37,0.45); }
.card-overlay .link-icon { opacity: 0; transition: opacity 0.3s; color: #fff; }
.catering-card:hover .link-icon { opacity: 1; }
.catering-card .card-body { padding: 0.875rem 1rem 1rem; border-top: 1px solid var(--border); }
.card-company { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.card-place { font-size: 0.775rem; color: var(--text-light); margin-top: 0.15rem; }
.card-event { font-size: 0.775rem; color: var(--text-light); }

.more-btn-wrap { text-align: center; margin-top: 2rem; }
.catering-card.hidden { display: none; }

/* ══════════════════════════════════════
   BENTO PORTFOLIO
══════════════════════════════════════ */
.bento-section { background: var(--bg); padding: var(--section-pad) 0; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width: 1024px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .bento-grid { grid-template-columns: 1fr; } }

.bento-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s;
}
.bento-card:hover { background: #fafafa; }
.bento-card .card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.bento-card .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bento-card:hover .card-img img { transform: scale(1.04); }
.bento-card .card-body {
  padding: 0.875rem 1rem 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--border);
}
.bento-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  display: inline-block;
  padding: 0.1rem 0.45rem;
  border-radius: 2px;
  align-self: flex-start;
  letter-spacing: 0.04em;
}
.bento-title { font-weight: 700; font-size: 0.9rem; }
.bento-desc { font-weight: 300; font-size: 0.825rem; color: var(--text-muted); line-height: 1.55; }

/* ══════════════════════════════════════
   CLIENTS LOGO SLIDER
══════════════════════════════════════ */
.clients-section {
  background: var(--bg-alt);
  padding: 4rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-section .section-eyebrow { color: var(--primary); }
.clients-section h2 { color: var(--text); }
.clients-section .desc { color: var(--text-muted); }
.clients-section .section-h2-underline::after { margin: 0 auto; }

.clients-slider { overflow: hidden; position: relative; margin-top: 2rem; }
.clients-slider::before,
.clients-slider::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.clients-slider::before { left: 0; background: linear-gradient(90deg, var(--bg-alt), transparent); }
.clients-slider::after  { right: 0; background: linear-gradient(-90deg, var(--bg-alt), transparent); }
.clients-track {
  display: flex;
  gap: 0.75rem;
  animation: scroll-logos 40s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 42px;
  padding: 0 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.2s;
  cursor: default;
}
.client-logo span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.client-logo:hover {
  border-color: var(--primary);
  background: #fff;
}
.client-logo:hover span { color: var(--primary); }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--primary);
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero/hero-02.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: multiply;
}
.cta-content { position: relative; z-index: 1; }
.cta-content .section-label { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.4); }
.cta-content h2 { color: #fff; margin-bottom: 0.875rem; }
.cta-content p {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-weight: 300;
}
.cta-btns { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.cta-section .btn-outline { border-color: rgba(255,255,255,0.8); color: #fff; }
.cta-section .btn-outline:hover { background: rgba(255,255,255,0.15); }
.cta-section .btn-kakao { background: #FEE500; color: #3A1D1D; }
.cta-section .btn-kakao:hover { background: #f0d800; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand .footer-logo { margin-bottom: 0.875rem; }
.footer-brand .footer-logo img { height: 40px; }
.footer-brand .brand-desc { font-size: 0.825rem; line-height: 1.65; margin-bottom: 1.125rem; max-width: 340px; }
.footer-info { font-size: 0.775rem; line-height: 2; opacity: 0.6; }
.footer-info strong { opacity: 1; color: rgba(255,255,255,0.85); }
.footer-links h4 { color: rgba(255,255,255,0.85); font-size: 0.85rem; margin-bottom: 0.875rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links ul li a { font-size: 0.8rem; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-links ul li a:hover { color: #fff; }
.footer-sns { display: flex; gap: 0.625rem; margin-top: 1.25rem; }
.sns-btn {
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: all 0.15s;
}
.sns-btn:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.75rem; opacity: 0.4;
}
.footer-bottom a:hover { opacity: 1; color: #fff; }

/* ══════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════ */
.floating-wrap {
  position: fixed; bottom: 2rem; right: 1.5rem;
  z-index: 900;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem;
}
.float-btns {
  display: flex; flex-direction: column; gap: 0.4rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.2s ease;
}
.float-btns.open { opacity: 1; visibility: visible; transform: translateY(0); }
.float-btn {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 0.875rem;
  border-radius: 2px;
  font-size: 0.8rem; font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.22);
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.float-btn-kakao { background: #FEE500; color: #3A1D1D; }
.float-btn-tel   { background: var(--primary); color: #fff; }
.float-toggle {
  width: 48px; height: 48px;
  border-radius: 2px;
  background: var(--bg-dark);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  transition: all 0.2s;
}
.float-toggle:hover { background: var(--primary); }
.float-toggle svg { transition: transform 0.3s; }
.float-toggle.open svg { transform: rotate(45deg); }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-section { padding: var(--section-pad) 0; }
.contact-methods {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 420px;
  margin: 0 auto 3rem;
}
.contact-card {
  background: #fff;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: background 0.15s;
}
.contact-card:hover { background: #fafafa; }
.contact-card .method-icon {
  width: 48px; height: 48px;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  border-radius: 2px;
}
.contact-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.contact-card .method-val {
  font-size: 1.2rem; font-weight: 900;
  color: #ff5500;
  display: block;
  margin-bottom: 0.5rem;
}
.contact-card p { font-size: 0.82rem; font-weight: 300; color: var(--text-muted); }
.contact-info-box {
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 2rem;
  background: var(--bg-alt);
  max-width: 680px;
  margin: 0 auto;
}
.contact-info-box h3 { font-size: 1rem; margin-bottom: 1.25rem; }
.info-list { display: flex; flex-direction: column; gap: 0.75rem; }
.info-list li { display: flex; gap: 0.75rem; font-size: 0.875rem; color: var(--text-muted); }
.info-list li strong { color: var(--text); min-width: 96px; font-weight: 700; }

/* ══════════════════════════════════════
   SERVICE DETAIL
══════════════════════════════════════ */
.service-detail { padding: var(--section-pad) 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) { .service-detail-grid { grid-template-columns: 1fr; gap: 2rem; } }
.service-detail-img { overflow: hidden; border-radius: 0; }
.service-detail-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-detail-content { display: flex; flex-direction: column; gap: 1rem; }
.service-detail-content h2 { font-size: 1.625rem; }
.service-detail-content p { font-weight: 300; color: var(--text-muted); line-height: 1.8; font-size: 0.9rem; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.service-features li {
  display: flex; gap: 0.625rem;
  font-size: 0.875rem; color: var(--text-muted);
  align-items: flex-start;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.service-features li::before {
  content: '';
  display: block; width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0; margin-top: 0.55em;
}

/* ══════════════════════════════════════
   FAQ / NSEO
══════════════════════════════════════ */
.faq-section { padding: var(--section-pad) 0; background: var(--bg-alt); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); background: #fff; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  padding: 1.125rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-q:hover { color: var(--primary); }
.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid transparent;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 1.25rem 1.125rem; border-top-color: var(--border); }
.related-links { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }
.related-link {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.825rem; font-weight: 700;
  color: var(--text);
  transition: all 0.15s;
}
.related-link:hover { border-color: var(--primary); color: var(--primary); }
.main-page-banner {
  background: #fdf3ed;
  border: 1px solid #f0d9c8;
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
}
.main-page-banner h3 { color: var(--text); margin-bottom: 0.5rem; font-size: 1.05rem; }
.main-page-banner p { color: var(--text-muted); font-weight: 300; margin-bottom: 1.25rem; font-size: 0.875rem; }

/* ══════════════════════════════════════
   PRICE GUIDE
══════════════════════════════════════ */
.price-section { background: var(--bg); padding: var(--section-pad) 0; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 0.5rem;
}
@media (max-width: 1024px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: #fff;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.15s;
  position: relative;
}
.price-card:hover { background: #fafafa; }
.price-card.featured {
  background: #fdf3ed;
  border: 2px solid var(--primary);
  color: var(--text);
}
.price-card.featured .price-amount { color: var(--primary); }
.price-card.featured .price-label { color: var(--text); }
.price-card.featured .price-desc  { color: var(--text-muted); }
.price-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.price-card.featured .price-tag { color: var(--primary); }
.price-amount {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-amount span { font-size: 0.9rem; font-weight: 400; }
.price-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 0.125rem;
}
.price-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0.25rem;
}
.price-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}
.price-note strong { color: var(--text); font-weight: 700; }

/* ══════════════════════════════════════
   PROCESS FLOW
══════════════════════════════════════ */
.process-section { background: var(--bg-alt); padding: var(--section-pad) 0; border-top: 1px solid var(--border); }
.process-section .section-label { color: var(--primary); border-color: var(--primary); }
.process-section h2 { color: var(--text); }
.process-section .desc { color: var(--text-muted); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  background: #fff;
}
@media (max-width: 900px)  { .process-steps { grid-template-columns: 1fr; } }
.process-step {
  padding: 1.75rem 1.25rem;
  border-right: 1px solid var(--border);
  position: relative;
  background: #fff;
  transition: background 0.2s;
}
.process-step:hover { background: var(--bg-alt); }
.process-step:last-child { border-right: none; }
@media (max-width: 900px) {
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
}
.process-step .step-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.875rem;
}
.process-step .step-icon {
  width: 36px; height: 36px;
  background: #fdf3ed;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
  border: 1px solid #f0d9c8;
}
.process-step h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.375rem;
}
.process-step p {
  font-size: 0.775rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   ORDER GUIDE
══════════════════════════════════════ */
.order-guide-section { background: var(--bg-alt); padding: var(--section-pad) 0; }
.order-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 768px) { .order-guide-grid { grid-template-columns: 1fr; } }
.order-guide-box {
  background: #fff;
  padding: 2rem 1.75rem;
}
.order-guide-box h3 {
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.order-checklist { display: flex; flex-direction: column; gap: 0.625rem; }
.order-checklist li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  align-items: flex-start;
  line-height: 1.6;
}
.order-checklist li svg { flex-shrink: 0; margin-top: 3px; color: var(--primary); }
.order-checklist li strong { color: var(--text); font-weight: 700; }

.min-order-bar {
  background: var(--bg-dark);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1px;
}
.min-order-bar .label {
  font-size: 0.775rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.min-order-bar .vals {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.min-order-bar .val-item { text-align: center; }
.min-order-bar .val-type { font-size: 0.7rem; color: rgba(255,255,255,0.45); font-weight: 400; }
.min-order-bar .val-num { font-size: 1.1rem; font-weight: 900; color: #fff; }

/* ══════════════════════════════════════
   RESERVATION CHECKLIST
══════════════════════════════════════ */
.reservation-box {
  border: 1px solid var(--border);
  background: #fff;
  max-width: 740px;
  margin: 0 auto;
}
.reservation-box .res-head {
  background: var(--bg-dark);
  padding: 1.125rem 1.75rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.reservation-box .res-body { padding: 1.75rem; }
.res-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 640px) { .res-fields { grid-template-columns: 1fr; } }
.res-field {
  background: #fff;
  padding: 1.125rem 1.25rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.res-field:nth-child(even) { border-right: none; }
@media (max-width: 640px) { .res-field { border-right: none; } }
.res-field .field-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.res-field .field-hint {
  font-size: 0.825rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.55;
}
.res-notice {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}
.res-notice strong { color: var(--text); font-weight: 700; }

/* ══════════════════════════════════════
   PRIVACY
══════════════════════════════════════ */
.privacy-section { padding: var(--section-pad) 0; }
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-content h2 { font-size: 1.25rem; margin: 2.5rem 0 0.75rem; }
.privacy-content h3 { font-size: 1rem; margin: 1.5rem 0 0.5rem; }
.privacy-content p, .privacy-content li { font-size: 0.875rem; font-weight: 300; color: var(--text-muted); line-height: 1.8; margin-bottom: 0.5rem; }
.privacy-content ul { padding-left: 1.5rem; list-style: disc; }
.privacy-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.85rem; }
.privacy-content th, .privacy-content td { border: 1px solid var(--border); padding: 0.625rem; text-align: left; }
.privacy-content th { background: var(--bg-alt); font-weight: 700; }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-section { padding: var(--section-pad) 0; }
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-bottom: 5rem;
}
@media (max-width: 768px) { .about-intro-grid { grid-template-columns: 1fr; gap: 2rem; } }
.about-img { overflow: hidden; }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-text { display: flex; flex-direction: column; gap: 1rem; }
.about-text h2 { font-size: 1.625rem; }
.about-text p { font-weight: 300; color: var(--text-muted); line-height: 1.85; font-size: 0.9rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { padding: 1.75rem; background: #fff; }
.value-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; font-weight: 300; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem; }
  .hero h1 { font-size: 1.875rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ═══ REDESIGN: Professional layout components ═══ */

/* Hero — left aligned, oversized typography */
.hero-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 5rem;
  height: 100%;
}
/* override centered hero-content for main page only */
.hero.hero-left .hero-content {
  text-align: left;
  max-width: none;
  padding: 0;
  width: 100%;
}
.hero.hero-left h1 {
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 800px;
}
.hero.hero-left .hero-slogan {
  text-align: left;
  max-width: 480px;
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.hero-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.5rem;
}
.hero-bottom-bar .hero-phone-lg {
  font-size: clamp(1.125rem, 3vw, 1.625rem);
  font-weight: 900;
  color: #ff5500;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.hero-bottom-bar .hero-phone-lg:hover { color: #ff7733; }
@media (max-width: 768px) {
  .hero.hero-left h1 { font-size: 3rem; }
  .hero-bottom-bar { flex-direction: column; align-items: flex-start; }
}

/* Services — numbered list (NOT card grid) */
.services-list { margin-top: 2.5rem; }
.service-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr 1.5rem;
  align-items: center;
  gap: 2rem;
  padding: 1.625rem 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
  position: relative;
}
.service-row:last-child { border-bottom: 1px solid var(--border); }
.service-row:hover { background: var(--bg-alt); margin: 0 -2rem; padding-left: 2rem; padding-right: 2rem; }
.service-row .row-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  line-height: 1;
  padding-top: 0.2rem;
}
.service-row .row-body h3 {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.service-row .row-body p {
  font-size: 0.825rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.service-row .row-arrow {
  font-size: 1.125rem;
  color: var(--primary);
  transition: transform 0.2s;
  font-weight: 300;
}
.service-row:hover .row-arrow { transform: translateX(5px); }
@media (max-width: 640px) {
  .service-row { grid-template-columns: 2.5rem 1fr 1rem; gap: 1rem; }
}

/* Stats bar */
.stats-section {
  background: #fdf3ed;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid #f0d9c8;
  border-bottom: 1px solid #f0d9c8;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid #f0d9c8;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.stat-num span {
  font-size: 0.5em;
  font-weight: 400;
  vertical-align: super;
  letter-spacing: 0;
}
.stat-label {
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid #f0d9c8; }
  .stat-item:last-child { border-bottom: none; }
}

/* Portfolio — featured first card */
.catering-grid.has-featured .featured-card { grid-column: span 2; }
.catering-grid.has-featured .featured-card .card-img { aspect-ratio: 16/9; }
@media (max-width: 1024px) {
  .catering-grid.has-featured { grid-template-columns: 1fr; }
  .catering-grid.has-featured .featured-card { grid-column: span 1; }
  .catering-grid.has-featured .featured-card .card-img { aspect-ratio: 4/3; }
}

/* Section heading — strip AI badge style on main page, use underline */
.section-h2-underline {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 900;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 0.75rem;
}
.section-h2-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 3px;
  background: var(--primary);
}
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 0.875rem;
}
