/* ============================================================
   GACHAPON GROUP CMS — Main Stylesheet
   Design tokens: match original gachapon_group_.html
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:        #c8aa64;
  --gold-dim:    rgba(200,170,100,0.18);
  --gold-faint:  rgba(200,170,100,0.07);
  --dark:        #0d0c0a;
  --dark2:       #111009;
  --cream:       #f0ebe0;
  --cream-dim:   rgba(240,235,224,0.5);
  --cream-faint: rgba(240,235,224,0.15);
  --border:      rgba(200,170,100,0.15);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --nav-h:       72px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--dark); color: var(--cream); min-height: 100vh; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; }

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 3rem;
  background: rgba(13,12,10,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-logo {
  font-family: var(--font-serif); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase;
  text-decoration: none; line-height: 1.3;
}
.nav-logo span { display: block; font-size: 0.62rem; letter-spacing: 0.35em; opacity: 0.7; }
.nav-links { display: flex; list-style: none; gap: 0; }
.nav-links li a {
  display: block; padding: 0.5rem 1rem;
  color: rgba(240,235,224,0.55); text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--gold); }
.nav-links li a.active { border-bottom: 1px solid var(--gold); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--gold); transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-drawer {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: rgba(13,12,10,0.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 0;
}
.nav-drawer.open { display: flex; }
.nav-drawer ul { list-style: none; width: 100%; text-align: center; }
.nav-drawer li a {
  display: block; padding: 1.2rem 2rem;
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700;
  color: rgba(240,235,224,0.55); text-decoration: none;
  border-bottom: 1px solid rgba(200,170,100,0.06); transition: color 0.2s;
}
.nav-drawer li a:hover { color: var(--gold); }
.nav-drawer-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 8rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}
.hero-radial { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 80% 55% at 50% 38%, rgba(200,170,100,0.08) 0%, transparent 65%); }
.hero-ring  { position: absolute; width: 600px; height: 600px; border: 1px solid rgba(200,170,100,0.06); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hero-ring2 { position: absolute; width: 900px; height: 900px; border: 1px solid rgba(200,170,100,0.03); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.8rem; font-weight: 500; animation: fadeUp 0.8s 0.1s ease both; }
.hero-title { font-family: var(--font-serif); font-size: clamp(3.8rem,10vw,7.5rem); font-weight: 900; line-height: 0.95; color: var(--cream); animation: fadeUp 0.8s 0.25s ease both; }
.hero-title span { color: var(--gold); display: block; }
.hero-sub { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.3rem,3vw,2.2rem); color: rgba(240,235,224,0.38); letter-spacing: 0.1em; margin-top: 1.6rem; margin-bottom: 2rem; animation: fadeUp 0.8s 0.4s ease both; }
.hero-title { padding-bottom: 0.12em; }
.hero-divider { width: 50px; height: 1px; background: var(--gold); opacity: 0.4; margin: 0 auto 2rem; animation: fadeUp 0.8s 0.5s ease both; }
.hero-tagline { font-size: 0.82rem; color: rgba(240,235,224,0.42); letter-spacing: 0.06em; max-width: 380px; line-height: 1.8; animation: fadeUp 0.8s 0.55s ease both; }
.hero-cta { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.8s 0.65s ease both; }

/* ── BRANDS STRIP ─────────────────────────────────────────── */
.brands-section { padding: 3rem 2rem 2.5rem; border-top: 1px solid var(--border); background: rgba(255,255,255,0.015); }
.brands-label { text-align: center; font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(240,235,224,0.3); margin-bottom: 1.8rem; }
.brands-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1rem; max-width: 860px; margin: 0 auto 2rem; }
.brand-chip { display: flex; align-items: center; gap: 0.45rem; padding: 0.4rem 0.9rem; border: 1px solid rgba(200,170,100,0.18); border-radius: 100px; font-size: 0.72rem; color: rgba(240,235,224,0.55); letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; transition: border-color 0.25s, color 0.25s; white-space: nowrap; }
.brand-chip:hover { border-color: rgba(200,170,100,0.5); color: var(--gold); }
.brand-dot { width: 4px; height: 4px; border-radius: 50%; opacity: 0.6; flex-shrink: 0; }
.entities-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.entity-tag { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(240,235,224,0.2); }
.entity-sep { color: rgba(200,170,100,0.2); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.cta-btn {
  display: inline-block; padding: 0.75rem 2rem;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; background: transparent;
  font-family: var(--font-sans); transition: background 0.25s, color 0.25s;
}
.cta-btn:hover, .cta-btn--fill { background: var(--gold); color: var(--dark); }
.cta-btn--fill { border-color: var(--gold); }
.cta-btn--fill:hover { opacity: 0.85; }
.cta-btn--line { background: transparent; color: var(--gold); }
.cta-btn--line:hover { background: var(--gold); color: var(--dark); }

/* ── SECTION COMMONS ──────────────────────────────────────── */
.section-eyebrow { font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 500; }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem,5vw,3.5rem); font-weight: 700; color: var(--cream); }

/* ── SERVICES ─────────────────────────────────────────────── */
.services-section { padding: 4rem 2.5rem; border-top: 1px solid var(--border); }
.services-header { margin-bottom: 2.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.service-card { padding: 2rem 1.8rem; background: rgba(255,255,255,0.015); border-right: 1px solid var(--border); }
.service-card:last-child { border-right: none; }
.service-icon { font-size: 1.8rem; display: block; margin-bottom: 1rem; }
.service-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.6rem; }
.service-body { font-size: 0.78rem; color: rgba(240,235,224,0.42); line-height: 1.7; }
/* Uniform media header for every service card — same 4:3 box whether it holds
   an uploaded image (cover-cropped, never stretched) or just an icon tile.
   Bleeds out over the card's 2rem/1.8rem padding so it sits flush at the top. */
.service-media { display: block; width: calc(100% + 3.6rem); margin: -2rem -1.8rem 1.2rem; aspect-ratio: 4 / 3; background: #1a1510 center / cover no-repeat; border-bottom: 1px solid var(--border); }
.service-media--icon { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(200,170,100,0.08), rgba(255,255,255,0.012)); }
.service-media--icon > span { font-size: 2.8rem; opacity: 0.9; line-height: 1; }
a.service-card { text-decoration: none; transition: background 0.2s; }
a.service-card:hover { background: var(--gold-faint); }

/* ── BLOG PREVIEW ─────────────────────────────────────────── */
.blog-preview-section { padding: 4rem 2.5rem; border-top: 1px solid var(--border); }
.blog-preview-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 2rem; }
.link-all { font-size: 0.72rem; color: var(--gold); text-decoration: none; letter-spacing: 0.08em; }
.link-all:hover { opacity: 0.7; }
.blog-preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1px; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.blog-preview-card { display: flex; flex-direction: column; background: rgba(255,255,255,0.015); border-right: 1px solid var(--border); text-decoration: none; transition: background 0.2s; }
.blog-preview-card:hover { background: var(--gold-faint); }
.blog-preview-img { width: 100%; aspect-ratio: 16/9; background: #111009 center/cover no-repeat; }
.blog-preview-img--empty { background: linear-gradient(135deg, #111 0%, #1a1510 100%); }
.blog-preview-body { padding: 1.2rem 1.4rem; flex: 1; }
.blog-preview-date { font-size: 0.62rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.blog-preview-title { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; line-height: 1.3; }
.blog-preview-excerpt { font-size: 0.72rem; color: rgba(240,235,224,0.42); line-height: 1.6; }

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section { padding: 4rem 2.5rem; border-top: 1px solid var(--border); background: rgba(200,170,100,0.02); text-align: center; }
.cta-section-title { font-family: var(--font-serif); font-size: clamp(1.5rem,4vw,2.5rem); color: var(--cream); margin-bottom: 1rem; }
.cta-section-body { font-size: 0.85rem; color: rgba(240,235,224,0.42); line-height: 1.7; max-width: 480px; margin: 0 auto 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── SUBPAGE HERO ─────────────────────────────────────────── */
.subpage-wrap { padding-top: var(--nav-h); }
.subpage-hero { padding: 4rem 3rem 3rem; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.subpage-hero-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 65% 70% at 100% 0%, rgba(200,170,100,0.07) 0%, transparent 55%); }
.subpage-hero-title { font-family: var(--font-serif); font-size: clamp(2.5rem,6vw,5rem); font-weight: 900; line-height: 0.95; color: var(--cream); margin: 1rem 0; }
.subpage-hero-title em { color: var(--gold); font-style: normal; }
.subpage-hero-desc { font-size: 0.85rem; color: rgba(240,235,224,0.45); line-height: 1.8; max-width: 560px; }

/* ── PACKAGES ─────────────────────────────────────────────── */
.packages-section { padding: 3.5rem 2.5rem; border-bottom: 1px solid var(--border); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1px; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin-top: 1.5rem; }
.package-card { padding: 1.8rem; background: rgba(255,255,255,0.015); border-right: 1px solid var(--border); }
.package-card:last-child { border-right: none; }
.package-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; gap: 1rem; }
.package-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--cream); }
.package-price { text-align: right; flex-shrink: 0; }
.package-price-from { display: block; font-size: 0.55rem; color: rgba(240,235,224,0.3); text-transform: uppercase; letter-spacing: 0.1em; }
.package-price-num { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.package-price-unit { font-size: 0.62rem; color: rgba(240,235,224,0.3); }
.package-desc { font-size: 0.75rem; color: rgba(240,235,224,0.42); line-height: 1.6; margin-bottom: 1rem; }
.package-includes { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.package-includes li { font-size: 0.72rem; color: rgba(240,235,224,0.55); padding-left: 1rem; position: relative; }
.package-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-size: 0.6rem; }
.package-guests { font-size: 0.62rem; color: var(--gold); letter-spacing: 0.08em; }

/* ── FORMS ────────────────────────────────────────────────── */
.form-section { padding: 3.5rem 2.5rem; }
.form-header { margin-bottom: 2.5rem; }
.form-title { font-family: var(--font-serif); font-size: clamp(1.5rem,4vw,2.5rem); font-weight: 700; color: var(--cream); margin-top: 0.5rem; }
.form-error { margin-top: 1rem; padding: 0.8rem 1rem; background: rgba(220,50,50,0.1); border: 1px solid rgba(220,50,50,0.3); border-radius: 4px; font-size: 0.78rem; color: #e87070; }
.inquiry-form { max-width: 720px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(240,235,224,0.4); }
.form-group .req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(200,170,100,0.2);
  color: var(--cream); padding: 0.7rem 0.9rem; font-size: 0.85rem;
  font-family: var(--font-sans); border-radius: 3px;
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(200,170,100,0.6); }
.form-group select option { background: #1a1510; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-footer { margin-top: 2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.form-note { font-size: 0.7rem; color: rgba(240,235,224,0.3); line-height: 1.5; }
.form-success { text-align: center; padding: 4rem 2rem; }
.form-success-icon { font-size: 3rem; color: var(--gold); margin-bottom: 1rem; }
.form-success h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--cream); margin-bottom: 1rem; }
.form-success p { font-size: 0.85rem; color: rgba(240,235,224,0.5); margin-bottom: 0.4rem; }

/* ── WHY / FRANCHISE ──────────────────────────────────────── */
.why-section { padding: 3.5rem 2.5rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.why-card { padding: 2rem 1.5rem; background: rgba(255,255,255,0.015); border-right: 1px solid var(--border); }
.why-card:last-child { border-right: none; }
.why-num { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 900; color: rgba(200,170,100,0.15); margin-bottom: 0.5rem; }
.why-card h3 { font-size: 0.9rem; font-weight: 600; color: var(--cream); margin-bottom: 0.6rem; }
.why-card p { font-size: 0.75rem; color: rgba(240,235,224,0.42); line-height: 1.6; }
.brands-franchise-section { padding: 3.5rem 2.5rem; border-bottom: 1px solid var(--border); }
.brands-franchise-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.brand-fran-card { padding: 1.5rem; border: 1px solid var(--border); border-radius: 4px; background: rgba(255,255,255,0.015); }
.brand-fran-dot { width: 8px; height: 8px; border-radius: 50%; margin-bottom: 0.8rem; }
.brand-fran-card h3 { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 700; color: var(--cream); margin-bottom: 0.4rem; }
.brand-fran-card p { font-size: 0.72rem; color: rgba(240,235,224,0.42); line-height: 1.5; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 1.5rem 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(240,235,224,0.2); }
.footer-logo { color: var(--gold); font-family: var(--font-serif); font-weight: 700; margin-right: 1rem; }
.footer-left { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-links a { color: rgba(240,235,224,0.25); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-admin-link { color: rgba(240,235,224,0.18); text-decoration: none; }
.footer-admin-link:hover, .footer-admin-link strong { color: var(--gold); }

/* ── BACK TO TOP ──────────────────────────────────────────── */
#back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 40px; height: 40px; border: 1px solid var(--border); background: rgba(13,12,10,0.9); color: var(--gold); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; border-radius: 2px; z-index: 100; }

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

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .subpage-hero { padding: 2.5rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .packages-grid, .why-grid, .services-grid { grid-template-columns: 1fr; }
  .package-card, .why-card, .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .blog-preview-card { border-right: none; border-bottom: 1px solid var(--border); }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 480px) {
  .hero { padding: 7rem 1.5rem 3rem; }
  .packages-section, .form-section, .why-section, .brands-franchise-section { padding: 2.5rem 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   PHASE 2 — Additional public pages
   brands · brand detail · about · contact · menu · blog
   ============================================================ */

.empty-note { text-align: center; color: rgba(240,235,224,0.3); font-size: 0.85rem; padding: 3rem 1rem; }

/* ── BRANDS LISTING ───────────────────────────────────────── */
.brands-list-section { padding: 3.5rem 2.5rem; }
.brands-list { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.brand-row { display: flex; gap: 1.4rem; padding: 2rem 2rem; background: rgba(255,255,255,0.015); border-bottom: 1px solid var(--border); transition: background 0.2s; }
.brand-row:last-child { border-bottom: none; }
.brand-row:hover { background: rgba(200,170,100,0.03); }
.brand-row-mark { padding-top: 0.55rem; }
.brand-row-dot { display: block; width: 12px; height: 12px; border-radius: 50%; background: var(--brand-color, var(--gold)); box-shadow: 0 0 12px var(--brand-color, var(--gold)); }
.brand-row-main { flex: 1; }
.brand-row-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--cream); }
.brand-row-tagline { font-family: var(--font-serif); font-style: italic; font-size: 0.9rem; color: var(--gold); opacity: 0.85; margin: 0.3rem 0 0.7rem; }
.brand-row-desc { font-size: 0.8rem; color: rgba(240,235,224,0.45); line-height: 1.75; max-width: 640px; }
.brand-row-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.2rem; }
.brand-row-actions { display: flex; gap: 1.2rem; }
.brand-row-link { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
.brand-row-link:hover { opacity: 0.7; }
.brand-row-link--alt { color: rgba(240,235,224,0.4); }
.brand-row-link--alt:hover { color: var(--gold); opacity: 1; }

.entities-section { padding: 3.5rem 2.5rem; border-top: 1px solid var(--border); background: rgba(200,170,100,0.02); }
.entities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.entity-card-public { padding: 1.8rem; border: 1px solid var(--border); border-radius: 6px; background: rgba(255,255,255,0.015); }
.entity-card-public h3 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--cream); margin-bottom: 0.6rem; }
.entity-card-public p { font-size: 0.78rem; color: rgba(240,235,224,0.45); line-height: 1.7; }

/* ── BRAND DETAIL ─────────────────────────────────────────── */
.brand-hero { position: relative; padding: 4.5rem 3rem 3.5rem; border-bottom: 1px solid var(--border); overflow: hidden; text-align: center; }
.brand-hero-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 55% at 50% 0%, var(--brand-color, rgba(200,170,100,0.5)) 0%, transparent 60%); opacity: 0.12; }
.brand-back { display: inline-block; position: relative; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(240,235,224,0.4); text-decoration: none; margin-bottom: 2rem; transition: color 0.2s; }
.brand-back:hover { color: var(--gold); }
.brand-hero-dot { display: inline-block; width: 14px; height: 14px; border-radius: 50%; background: var(--brand-color, var(--gold)); box-shadow: 0 0 18px var(--brand-color, var(--gold)); margin-bottom: 1.2rem; }
.brand-hero-name { font-family: var(--font-serif); font-size: clamp(2.5rem,7vw,5rem); font-weight: 900; color: var(--cream); line-height: 1; }
.brand-hero-tagline { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.1rem,3vw,1.6rem); color: var(--gold); margin: 1rem 0 1.5rem; }
.brand-hero-entity { display: inline-block; }
.brand-body { padding: 3.5rem 2.5rem; max-width: 760px; margin: 0 auto; text-align: center; }
.brand-body-desc { font-size: 0.95rem; color: rgba(240,235,224,0.6); line-height: 1.9; margin-bottom: 2.5rem; }
.brand-cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.brand-menu-preview { padding-top: 2.5rem; border-top: 1px solid var(--border); }
.brand-cat-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.2rem; }
.brand-cat-chip { padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: 100px; font-size: 0.72rem; color: rgba(240,235,224,0.55); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.brand-cat-chip:hover { border-color: rgba(200,170,100,0.5); color: var(--gold); }
.brand-social { margin-top: 2.5rem; display: flex; gap: 1.5rem; justify-content: center; }
.brand-social-link { font-size: 0.75rem; color: var(--gold); text-decoration: none; letter-spacing: 0.05em; }

.brand-hero--cover { background-size: cover; background-position: center; }
.brand-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,8,0.55) 0%, var(--dark) 92%); pointer-events: none; }
.brand-hero-logo { position: relative; width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 1.2rem; background: var(--dark); border: 2px solid var(--brand-color, var(--gold)); box-shadow: 0 0 24px rgba(0,0,0,0.4); overflow: hidden; }
.brand-hero-logo img { width: 100%; height: 100%; object-fit: cover; }
/* Positioned elements paint after static ones regardless of DOM order — the
   scrim/glow overlays are position:absolute, so hero content needs its own
   stacking context (not just being later in the DOM) to render above them.
   (.brand-hero-logo already gets this from its own rule above.) */
.brand-back, .brand-hero-dot, .brand-hero-name, .brand-hero-tagline, .brand-hero-entity { position: relative; }

.brand-info-bar { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
.brand-info-item { display: flex; flex-direction: column; gap: 0.2rem; padding: 0.8rem 1.4rem; border: 1px solid var(--border); border-radius: 6px; text-decoration: none; min-width: 160px; }
a.brand-info-item:hover { border-color: rgba(200,170,100,0.4); }
.brand-info-label { font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(240,235,224,0.3); }
.brand-info-value { font-size: 0.85rem; color: var(--cream); }
.brand-map { margin-bottom: 2.5rem; }

.brand-menu-cat { margin-top: 1.8rem; text-align: left; }
.brand-menu-cat-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.8rem; text-align: center; }
.brand-menu-items { display: grid; gap: 0.7rem; }
.brand-menu-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(200,170,100,0.06); }
.brand-menu-item-img { width: 44px; height: 44px; border-radius: 5px; background: #1a1510 center/cover no-repeat; flex-shrink: 0; }
.brand-menu-item-main { flex: 1; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.brand-menu-item-name { font-size: 0.82rem; color: rgba(240,235,224,0.75); }
.brand-menu-item-price { font-family: var(--font-serif); font-size: 0.85rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
.brand-menu-fullcta { display: inline-block; margin-top: 1.5rem; }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-hero { padding: 5rem 3rem 3.5rem; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.about-hero-title { font-family: var(--font-serif); font-size: clamp(2.2rem,5.5vw,4rem); font-weight: 900; line-height: 1.05; color: var(--cream); margin: 1rem 0 1.5rem; }
.about-hero-title em { color: var(--gold); font-style: italic; }
.about-hero-desc { font-size: 0.9rem; color: rgba(240,235,224,0.5); line-height: 1.9; max-width: 680px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border-bottom: 1px solid var(--border); }
.about-section { padding: 3rem 2.5rem; background: rgba(255,255,255,0.012); border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
.about-section-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.founder-name { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--cream); }
.founder-alias { font-size: 0.78rem; color: rgba(240,235,224,0.4); letter-spacing: 0.1em; margin: 0.2rem 0; }
.founder-role { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); opacity: 0.7; margin-bottom: 1.2rem; }
.about-p { font-size: 0.78rem; color: rgba(240,235,224,0.5); line-height: 1.9; margin-bottom: 1rem; }
.about-p--dim { color: rgba(240,235,224,0.38); }
.about-p .hl { color: var(--gold); }
.founder-quote { font-family: var(--font-serif); font-style: italic; font-size: 0.95rem; color: var(--gold); margin: 1.2rem 0; }
.expertise-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.expertise-list li { font-size: 0.74rem; color: rgba(240,235,224,0.5); line-height: 1.6; padding-left: 1.1rem; position: relative; }
.expertise-list li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 0.55rem; top: 3px; }
.timeline { display: flex; flex-direction: column; }
.tl-item { display: grid; grid-template-columns: 56px 1fr; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid rgba(200,170,100,0.06); }
.tl-item:last-child { border-bottom: none; }
.tl-year { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--gold); }
.tl-name { font-size: 0.82rem; font-weight: 500; color: var(--cream); margin-bottom: 0.3rem; }
.tl-desc { font-size: 0.72rem; color: rgba(240,235,224,0.4); line-height: 1.6; }
.philosophy-section { padding: 4rem 2.5rem; text-align: center; border-bottom: 1px solid var(--border); background: rgba(200,170,100,0.02); }
.philosophy-quote { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.6rem,4vw,2.6rem); font-weight: 700; color: var(--cream); line-height: 1.3; }
.philosophy-body { font-size: 0.85rem; color: rgba(240,235,224,0.45); line-height: 1.85; max-width: 540px; margin: 1.5rem auto 0; }
.entity-cards { display: flex; flex-direction: column; gap: 0.9rem; }
.entity-card { padding: 1.2rem 1.4rem; border: 1px solid var(--border); border-radius: 5px; background: rgba(255,255,255,0.015); }
.entity-card-name { font-size: 0.85rem; font-weight: 600; color: var(--cream); }
.entity-card-reg { font-size: 0.65rem; color: var(--gold); opacity: 0.7; margin: 0.25rem 0; }
.entity-card-brands { font-size: 0.7rem; color: rgba(240,235,224,0.4); line-height: 1.5; }
.awards-table { width: 100%; border-collapse: collapse; }
.awards-table td { padding: 0.7rem 0; border-bottom: 1px solid rgba(200,170,100,0.06); font-size: 0.74rem; color: rgba(240,235,224,0.55); vertical-align: top; }
.awards-table td:last-child { text-align: right; color: var(--gold); opacity: 0.8; white-space: nowrap; padding-left: 1rem; }
.vision-section { padding: 4rem 2.5rem; text-align: center; }
.vision-title { font-family: var(--font-serif); font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 700; color: var(--cream); margin-bottom: 1rem; }
.vision-body { font-size: 0.85rem; color: rgba(240,235,224,0.45); line-height: 1.8; max-width: 520px; margin: 0 auto 2rem; }
.holding-children { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }
.holding-child { padding: 0.6rem 1.1rem; border: 1px solid var(--border); border-radius: 4px; font-size: 0.72rem; color: rgba(240,235,224,0.55); background: rgba(255,255,255,0.015); }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-section { padding: 3.5rem 2.5rem; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin-bottom: 2rem; }
.contact-card { padding: 2rem 1.5rem; background: rgba(255,255,255,0.015); border-right: 1px solid var(--border); text-align: center; }
.contact-card-icon { font-size: 1.6rem; display: block; margin-bottom: 0.8rem; }
.contact-card h3 { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(240,235,224,0.35); margin-bottom: 0.5rem; }
.contact-card-link { font-size: 0.8rem; color: var(--gold); text-decoration: none; word-break: break-word; }
.contact-routes { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.contact-route { display: block; padding: 2rem; border: 1px solid var(--border); border-radius: 6px; background: rgba(255,255,255,0.015); text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.contact-route:hover { border-color: rgba(200,170,100,0.4); background: rgba(200,170,100,0.04); }
.contact-route h3 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--cream); margin-bottom: 0.6rem; }
.contact-route p { font-size: 0.76rem; color: rgba(240,235,224,0.45); line-height: 1.6; margin-bottom: 1rem; }
.contact-route-go { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.contact-map { border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }

/* ── DIGITAL MENU ─────────────────────────────────────────── */
.menu-header { position: relative; padding: 3.5rem 2.5rem 2.5rem; border-bottom: 1px solid var(--border); text-align: center; overflow: hidden; }
.menu-header-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: var(--brand-color, var(--gold)); box-shadow: 0 0 16px var(--brand-color, var(--gold)); margin-bottom: 1rem; }
.menu-header-name { font-family: var(--font-serif); font-size: clamp(2rem,6vw,3.5rem); font-weight: 900; color: var(--cream); line-height: 1; }
.menu-header-tagline { font-family: var(--font-serif); font-style: italic; font-size: 1rem; color: var(--gold); margin-top: 0.8rem; }
.menu-catnav { position: sticky; top: var(--nav-h); z-index: 50; display: flex; justify-content: flex-start; align-items: center; height: auto; gap: 0.5rem; overflow-x: auto; padding: 0.9rem 2rem; background: rgba(13,12,10,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.menu-catnav a { white-space: nowrap; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(240,235,224,0.5); text-decoration: none; padding: 0.3rem 0.7rem; border-radius: 100px; transition: color 0.2s, background 0.2s; }
.menu-catnav a:hover { color: var(--gold); background: rgba(200,170,100,0.06); }
.menu-body { padding: 2.5rem 2rem; max-width: 760px; margin: 0 auto; }
.menu-cat { margin-bottom: 3rem; scroll-margin-top: calc(var(--nav-h) + 60px); }
.menu-cat-head { margin-bottom: 1.5rem; }
.menu-cat-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--cream); padding-bottom: 0.5rem; border-bottom: 1px solid var(--brand-color, var(--border)); display: inline-block; }
.menu-cat-desc { font-size: 0.78rem; color: rgba(240,235,224,0.4); margin-top: 0.6rem; }
.menu-items { display: flex; flex-direction: column; gap: 0.3rem; }
.menu-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(200,170,100,0.06); }
.menu-item-img { width: 64px; height: 64px; border-radius: 6px; background: #1a1510 center/cover no-repeat; flex-shrink: 0; }
.menu-item-main { flex: 1; }
.menu-item-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.menu-item-name { font-size: 0.92rem; font-weight: 500; color: var(--cream); }
.menu-badge { display: inline-block; font-size: 0.52rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; padding: 2px 7px; border-radius: 100px; margin-left: 0.5rem; vertical-align: middle; }
.menu-badge--pop { background: rgba(200,170,100,0.15); color: var(--gold); border: 1px solid rgba(200,170,100,0.35); }
.menu-badge--new { background: rgba(91,143,232,0.15); color: #7da7ee; border: 1px solid rgba(91,143,232,0.35); }
.menu-badge--sig { background: rgba(200,170,100,0.25); color: var(--gold); border: 1px solid rgba(200,170,100,0.5); }
.menu-item-price { text-align: right; white-space: nowrap; flex-shrink: 0; }
.menu-item-amount { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 700; color: var(--gold); }
.menu-item-alt { font-family: var(--font-serif); font-size: 0.8rem; color: rgba(200,170,100,0.6); }
.menu-item-pricelabel { display: block; font-size: 0.58rem; color: rgba(240,235,224,0.3); text-transform: uppercase; letter-spacing: 0.06em; }
.menu-item-desc { font-size: 0.74rem; color: rgba(240,235,224,0.42); line-height: 1.6; margin-top: 0.3rem; max-width: 90%; }
.menu-foot { padding: 1rem 2rem 3rem; text-align: center; }

/* ── SOCIAL FEED ──────────────────────────────────────────── */
.feed-section { padding: 3.5rem 2.5rem; }
.feed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; }
.feed-card { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; background: rgba(255,255,255,0.015); }
.feed-media { position: relative; display: block; }
.feed-img { display: block; width: 100%; aspect-ratio: 1 / 1; background: #1a1510 center / cover no-repeat; transition: opacity 0.2s; }
.feed-media:hover .feed-img { opacity: 0.88; }
.feed-img--none { background: linear-gradient(135deg, #111 0%, #1a1510 100%); }
.feed-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(13,12,10,0.6); border: 1px solid rgba(255,255,255,0.5); color: #fff; font-size: 1rem; display: flex; align-items: center; justify-content: center; padding-left: 3px; }
.feed-caption { padding: 1rem 1.1rem 0.4rem; font-size: 0.76rem; color: rgba(240,235,224,0.6); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.feed-foot { margin-top: auto; padding: 0.6rem 1.1rem 1rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(240,235,224,0.3); }
.feed-plat { color: var(--gold); opacity: 0.8; }

/* ── COMBINED STREAM (Journal + Feed on /blog) ────────────── */
.stream-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1px; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.stream-card { display: flex; flex-direction: column; background: rgba(255,255,255,0.015); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); text-decoration: none; transition: background 0.2s; }
.stream-card:hover { background: var(--gold-faint); }
.stream-media { position: relative; }
.stream-img { display: block; width: 100%; aspect-ratio: 4 / 3; background: #1a1510 center / cover no-repeat; }
.stream-img--none { background: linear-gradient(135deg, #111 0%, #1a1510 100%); }
.stream-tag { position: absolute; top: 10px; left: 10px; font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; padding: 3px 9px; border-radius: 100px; background: rgba(13,12,10,0.7); color: var(--cream); border: 1px solid rgba(255,255,255,0.15); }
.stream-tag--blog { background: rgba(200,170,100,0.85); color: var(--dark); border-color: transparent; }
.stream-body { padding: 1.1rem 1.3rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.stream-date { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); opacity: 0.75; margin-bottom: 0.5rem; }
.stream-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--cream); line-height: 1.3; margin-bottom: 0.5rem; }
.stream-text { font-size: 0.76rem; color: rgba(240,235,224,0.45); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.stream-text--social { -webkit-line-clamp: 4; color: rgba(240,235,224,0.6); }
.stream-ext { margin-top: auto; padding-top: 0.7rem; font-size: 0.65rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); opacity: 0.7; }
@media (max-width: 768px) { .stream-grid { grid-template-columns: 1fr; } }

/* ── BLOG LIST ────────────────────────────────────────────── */
.blog-tag-filter { font-size: 0.75rem; color: rgba(240,235,224,0.45); margin-top: 1rem; }
.blog-tag-filter strong { color: var(--gold); }
.blog-tag-filter a { color: rgba(240,235,224,0.35); text-decoration: underline; }
.blog-list-section { padding: 3.5rem 2.5rem; }
.pagination { display: flex; gap: 0.4rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
.page-link { display: inline-block; min-width: 38px; text-align: center; padding: 0.5rem 0.8rem; border: 1px solid var(--border); border-radius: 3px; font-size: 0.72rem; color: rgba(240,235,224,0.55); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.page-link:hover { border-color: rgba(200,170,100,0.5); color: var(--gold); }
.page-link--active { background: var(--gold); color: var(--dark); border-color: var(--gold); font-weight: 600; }

/* ── BLOG POST ────────────────────────────────────────────── */
.post { max-width: 760px; margin: 0 auto; padding: 3rem 2rem 2rem; }
.post-header { margin-bottom: 2rem; }
.post-meta { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); opacity: 0.75; margin: 1.5rem 0 0.8rem; }
.post-title { font-family: var(--font-serif); font-size: clamp(2rem,5vw,3.2rem); font-weight: 900; color: var(--cream); line-height: 1.15; }
.post-excerpt { font-size: 1rem; color: rgba(240,235,224,0.55); line-height: 1.8; margin-top: 1.2rem; font-style: italic; }
.post-cover { width: 100%; aspect-ratio: 16/9; background: #1a1510 center/cover no-repeat; border-radius: 8px; margin-bottom: 2.5rem; }
.prose { font-size: 0.92rem; color: rgba(240,235,224,0.72); line-height: 1.95; }
.prose h2 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--cream); margin: 2.2rem 0 1rem; }
.prose h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--cream); margin: 1.8rem 0 0.8rem; }
.prose p { margin-bottom: 1.2rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.4rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--gold); text-decoration: underline; }
.prose img { border-radius: 6px; margin: 1.5rem 0; }
.prose blockquote { border-left: 2px solid var(--gold); padding-left: 1.2rem; margin: 1.5rem 0; font-style: italic; color: rgba(240,235,224,0.55); }
.post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.post-tag { font-size: 0.68rem; letter-spacing: 0.06em; color: rgba(240,235,224,0.5); text-decoration: none; padding: 0.35rem 0.8rem; border: 1px solid var(--border); border-radius: 100px; transition: border-color 0.2s, color 0.2s; }
.post-tag:hover { border-color: rgba(200,170,100,0.5); color: var(--gold); }

/* ── PHASE 2 RESPONSIVE ───────────────────────────────────── */
@media (max-width: 768px) {
  .brands-list-section, .entities-section, .brand-body, .menu-body,
  .blog-list-section, .contact-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-section { border-right: none; }
  .contact-routes { grid-template-columns: 1fr; }
  .contact-card { border-right: none; border-bottom: 1px solid var(--border); }
  .brand-row { flex-direction: column; gap: 0.8rem; }
  .brand-row-meta { flex-direction: column; align-items: flex-start; }
}
