/* ===================================
   BARBEQ STAR — Common Styles
=================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #e8cb7a;
  --gold-dark: #a07830;
  --black: #0e0e0e;
  --dark: #1a1a1a;
  --dark2: #242424;
  --ivory: #f7f3ec;
  --white: #ffffff;
  --gray: #888;
  --font-serif: 'Noto Serif KR', 'Playfair Display', Georgia, serif;
  --font-sans: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(14,14,14,0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: background .3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-wrap img.logo-img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 50%;
}
.logo-wrap .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-wrap .brand-en {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.logo-wrap .brand-ko {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  padding: 6px 14px;
  border-radius: 20px;
  transition: all .25s;
  font-weight: 400;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.nav-links a.nav-btn-menu {
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 500;
  padding: 6px 18px;
  margin-left: 8px;
}
.nav-links a.nav-btn-menu:hover {
  background: var(--gold);
  color: var(--black);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(14,14,14,0.97);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: flex; }
.mm-link {
  padding: 12px 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color .2s;
}
.mm-link:last-child { border-bottom: none; }
.mm-link:hover { color: var(--gold); }

/* ---- SECTION COMMONS ---- */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.light .section-title,
.section-header.light .section-desc { color: var(--ivory); }
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--ivory);
  line-height: 1.25;
  margin-bottom: 16px;
  font-weight: 700;
}
.section-desc {
  color: rgba(247,243,236,0.6);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background .25s, transform .2s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ivory);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 13px 32px;
  border-radius: 2px;
  border: 1px solid rgba(247,243,236,0.4);
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- GOLD DIVIDER ---- */
.gold-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto;
}

/* ---- FOOTER ---- */
.site-footer {
  background: #080808;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 60px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-col .logo-wrap { margin-bottom: 16px; }
.footer-brand-col p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-col .contact-item i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 3px;
  min-width: 16px;
}
.footer-col .contact-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.75rem;
  transition: all .25s;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible { opacity: 1; transform: none; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: rgba(201,168,76,0.08);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 28px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: rgba(247,243,236,0.8);
  font-weight: 400;
}
.trust-item i { color: var(--gold); font-size: 1.05rem; }
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(201,168,76,0.25);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .section-desc { font-size: 0.87rem; }
  .container { padding: 0 16px; }
  .trust-inner { gap: 0; flex-wrap: wrap; }
  .trust-item { padding: 6px 12px; font-size: 0.78rem; gap: 6px; }
  .trust-divider { display: none; }
  .trust-bar { padding: 14px 0; }
  /* footer mobile */
  .footer-col .contact-item span { font-size: 0.78rem; }
  .footer-copy { font-size: 0.7rem; }
  .nav-inner { height: 60px; }
  .logo-wrap .brand-en { font-size: 1rem; }
  .site-footer { padding: 44px 0 28px; }
}
