@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DESIGN TOKENS ── */
:root {
  /* Backgrounds — alternating dark rhythm */
  --bg-black:  #0d0a08;
  --bg-dark:   #13100d;
  --bg-brick:  #1a1410;
  --bg-brown:  #261508;

  /* Text */
  --cream:     #f5efe6;
  --cream-dim: rgba(245, 239, 230, 0.55);
  --cream-low: rgba(245, 239, 230, 0.35);

  /* Accents */
  --orange:    #e87722;
  --gold:      #f5c842;
  --neon-blue: #3af0f0;
  --neon-yell: #ffe93a;

  /* Borders */
  --border-gold:  rgba(245, 200, 66, 0.12);
  --border-gold2: rgba(245, 200, 66, 0.22);
  --border-blue:  rgba(58, 240, 240, 0.2);
  --border-cream: rgba(245, 239, 230, 0.08);

  /* Spacing */
  --section-pad: 6rem 5%;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--cream);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════
   SHARED COMPONENTS
═══════════════════════════════════════ */
.section-tag {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--neon-yell); }
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--neon-yell));
  margin-bottom: 2rem;
  box-shadow: 0 0 10px rgba(232, 119, 34, 0.4);
}
.btn-primary {
  background: var(--orange); color: #fff; padding: 0.85rem 2rem;
  text-decoration: none; font-weight: 600; font-size: 0.82rem;
  letter-spacing: 2px; text-transform: uppercase;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  display: inline-block;
}
.btn-primary:hover { background: #cf6614; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,119,34,0.35); }
.btn-outline {
  border: 1px solid var(--border-blue); color: var(--neon-blue);
  padding: 0.85rem 2rem; text-decoration: none; font-weight: 500; font-size: 0.82rem;
  letter-spacing: 2px; text-transform: uppercase;
  transition: background 0.3s, box-shadow 0.3s; display: inline-block;
}
.btn-outline:hover { background: rgba(58,240,240,0.05); box-shadow: 0 0 20px rgba(58,240,240,0.12); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin-slow {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  padding: 1.2rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13,10,8,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  transition: padding 0.3s;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900;
  color: var(--neon-yell); letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255,233,58,0.5);
}
.nav-logo span { color: var(--neon-blue); text-shadow: 0 0 20px rgba(58,240,240,0.5); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--cream-dim); text-decoration: none;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.3s, text-shadow 0.3s;
}
.nav-links a:hover { color: var(--neon-yell); text-shadow: 0 0 10px rgba(255,233,58,0.4); }
.nav-pr-link {
  color: var(--gold) !important;
  border: 1px solid var(--border-gold2) !important;
  padding: 0.28rem 0.8rem;
  font-size: 0.72rem !important;
  letter-spacing: 1.5px !important;
  transition: background 0.3s, box-shadow 0.3s !important;
}
.nav-pr-link:hover {
  background: rgba(245,200,66,0.07) !important;
  box-shadow: 0 0 16px rgba(245,200,66,0.18) !important;
  color: var(--gold) !important;
  text-shadow: 0 0 12px rgba(245,200,66,0.4) !important;
}

/* ═══════════════════════════════════════
   HERO  — bg-black
═══════════════════════════════════════ */
#hero {
  min-height: 100vh; background: var(--bg-black);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 6rem 5% 3rem;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 65% 45%, rgba(232,119,34,0.12) 0%, transparent 55%),
    radial-gradient(circle at 15% 75%, rgba(58,240,240,0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(245,200,66,0.06) 0%, transparent 40%);
}
.hero-neon-ring {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: 440px; height: 440px; border-radius: 50%;
  border: 1px solid rgba(58,240,240,0.07);
  display: flex; align-items: center; justify-content: center;
  animation: spin-slow 30s linear infinite;
}
.hero-neon-ring::before {
  content: ''; position: absolute;
  width: 360px; height: 360px; border-radius: 50%;
  border: 1px dashed rgba(245,200,66,0.1);
}
.hero-neon-ring::after {
  content: '46';
  font-family: 'Playfair Display', serif;
  font-size: 9rem; font-weight: 900; color: transparent;
  -webkit-text-stroke: 1px rgba(245,200,66,0.1); letter-spacing: -4px;
}
.hero-content {
  position: relative; z-index: 2; max-width: 620px;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 4px; text-transform: uppercase;
  color: var(--neon-blue); margin-bottom: 1rem;
  animation: fadeUp 1s 0.1s ease both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 28px; height: 1px; background: var(--neon-blue); opacity: 0.5;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 900; line-height: 1.0; color: var(--cream);
  margin-bottom: 0.2rem; animation: fadeUp 1s 0.15s ease both;
}
.hero-title-neon {
  display: block; font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 900; font-style: italic;
  color: var(--neon-yell);
  text-shadow: 0 0 30px rgba(255,233,58,0.4), 0 0 70px rgba(255,233,58,0.12);
  margin-bottom: 1rem; animation: fadeUp 1s 0.2s ease both;
}
.hero-sub {
  color: var(--cream-dim); font-size: 0.95rem; line-height: 1.75;
  margin-bottom: 1.8rem; max-width: 480px; animation: fadeUp 1s 0.3s ease both;
}
.hero-cta { display: inline-flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 1s 0.4s ease both; margin-bottom: 2rem; }
.hero-stats {
  display: flex; gap: 0; padding-top: 1.8rem;
  border-top: 1px solid var(--border-cream); animation: fadeUp 1s 0.5s ease both;
}
.stat-item { text-align: left; padding-right: 2.5rem; margin-right: 2.5rem; border-right: 1px solid var(--border-cream); }
.stat-item:last-child { border-right: none; margin-right: 0; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 900;
  color: var(--neon-yell); text-shadow: 0 0 20px rgba(255,233,58,0.3);
}
.stat-label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--cream-low); margin-top: 0.3rem; line-height: 1.4; }

/* ═══════════════════════════════════════
   ABOUT  — bg-brick
═══════════════════════════════════════ */
#about { background: var(--bg-brick); padding: var(--section-pad); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: var(--max-w); margin: 0 auto;
}
.about-img-wrap { position: relative; }
.about-img-box { width: 100%; aspect-ratio: 4/5; background: #1a1007; position: relative; overflow: hidden; }
.about-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.88) saturate(1.15); }
.about-img-box::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,10,8,0.45) 0%, transparent 55%);
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px; background: var(--orange);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(232,119,34,0.45); z-index: 2;
}
.about-badge .yr { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1; }
.about-badge .since { font-size: 0.6rem; letter-spacing: 3px; color: rgba(255,255,255,0.85); text-transform: uppercase; }
.about-text p { color: var(--cream-dim); line-height: 1.9; font-size: 0.98rem; margin-bottom: 1.2rem; }
.values-row { display: flex; gap: 0.8rem; margin-top: 2rem; flex-wrap: wrap; }
.value-chip {
  font-size: 0.78rem; font-weight: 500; color: rgba(245,239,230,0.7);
  background: rgba(245,239,230,0.04); border: 1px solid var(--border-gold);
  padding: 0.4rem 0.9rem; display: flex; align-items: center; gap: 0.5rem;
}
.value-chip::before {
  content: ''; width: 6px; height: 6px; background: var(--neon-yell); border-radius: 50%;
  flex-shrink: 0; box-shadow: 0 0 6px rgba(255,233,58,0.6);
}

/* ═══════════════════════════════════════
   COMMUNITY BANNER  — bg-brown
═══════════════════════════════════════ */
#vibe {
  background: var(--bg-brown);
  padding: var(--section-pad);
  text-align: center;
  position: relative; overflow: hidden;
}
#vibe::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(232,119,34,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.vibe-inner { position: relative; z-index: 2; max-width: 750px; margin: 0 auto; }
.vibe-inner .section-tag  { color: var(--gold); margin-bottom: 1rem; }
.vibe-inner .section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }
.vibe-inner .section-title em { color: var(--gold); }
.vibe-sub {
  color: rgba(245,239,230,0.65); font-size: 1rem; line-height: 1.9;
  max-width: 580px; margin: 0 auto 2.5rem;
}
.vibe-icons {
  display: inline-flex; gap: 3rem; flex-wrap: wrap; justify-content: center;
  padding-top: 2rem; border-top: 1px solid var(--border-gold); width: 100%;
}
.vibe-icon-item { text-align: center; }
.vibe-icon-emoji { font-size: 1.8rem; display: block; margin-bottom: 0.4rem; }
.vibe-icon-label {
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,239,230,0.5); font-weight: 500;
}

/* ═══════════════════════════════════════
   PRESS RELEASE  — bg-black
═══════════════════════════════════════ */
#press-release { background: var(--bg-black); padding: 0; overflow: hidden; }

.pr-ticker-bar {
  display: flex; align-items: center;
  background: var(--gold); overflow: hidden; height: 36px;
}
.pr-ticker-label {
  flex-shrink: 0; background: var(--bg-black); color: var(--gold);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 3px;
  padding: 0 1.4rem; height: 100%; display: flex; align-items: center;
  border-right: 2px solid var(--orange); text-transform: uppercase; white-space: nowrap;
}
.pr-ticker-track { overflow: hidden; flex: 1; height: 100%; display: flex; align-items: center; }
.pr-ticker-inner {
  display: flex; gap: 2.5rem; white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--bg-black); align-items: center;
}
.pr-tick-dot { color: var(--orange); font-size: 0.5rem; }

.pr-container { padding: var(--section-pad); max-width: var(--max-w); margin: 0 auto; }

.pr-masthead {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 1.5rem; gap: 1.5rem;
}
.pr-masthead-side { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.pr-masthead-side.right { align-items: flex-end; }
.pr-edition-tag { font-size: 0.58rem; letter-spacing: 4px; text-transform: uppercase; color: rgba(245,200,66,0.45); font-weight: 600; }
.pr-rule-lines { display: flex; gap: 3px; }
.pr-rule-lines div { height: 2px; flex: 1; background: var(--gold); opacity: 0.15; }
.pr-rule-lines div:first-child { opacity: 0.6; }
.pr-rule-lines div:last-child  { opacity: 0.06; }
.pr-masthead-side.right .pr-rule-lines { flex-direction: row-reverse; }
.pr-masthead-center { flex: 0 0 auto; text-align: center; line-height: 0.88; }
.pr-banner-word {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 900; letter-spacing: 0.18em;
  color: var(--gold); text-shadow: 0 0 40px rgba(245,200,66,0.28); display: block;
}
.pr-banner-outline {
  color: transparent; -webkit-text-stroke: 1.5px rgba(245,200,66,0.38); text-shadow: none;
}

.pr-divider-full { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.pr-divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(245,200,66,0.3), transparent); }
.pr-divider-center { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.pr-div-diamond { color: var(--gold); font-size: 0.5rem; opacity: 0.55; }
.pr-div-text { font-size: 0.56rem; letter-spacing: 5px; text-transform: uppercase; color: rgba(245,200,66,0.48); font-weight: 700; }

.pr-headline-block { text-align: center; margin-bottom: 3rem; }
.pr-main-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.9rem); font-weight: 900; line-height: 1.3;
  color: var(--cream); margin: 0 auto 1rem; max-width: 800px;
}
.pr-main-headline em { font-style: italic; color: var(--gold); text-shadow: 0 0 30px rgba(245,200,66,0.22); }
.pr-dateline { font-size: 0.62rem; letter-spacing: 4px; text-transform: uppercase; color: rgba(245,200,66,0.35); font-weight: 600; }

.pr-columns {
  display: grid; grid-template-columns: 210px 1fr; gap: 3rem; align-items: start;
  border-top: 1px solid var(--border-gold); padding-top: 2.5rem;
}
.pr-sidebar {
  display: flex; flex-direction: column; gap: 2rem;
  border-right: 1px solid var(--border-gold); padding-right: 2rem;
}
.pr-sidebar-card { background: rgba(245,200,66,0.025); border: 1px solid var(--border-gold); padding: 1.2rem; }
.pr-sidebar-title { font-size: 0.55rem; letter-spacing: 4px; text-transform: uppercase; color: rgba(245,200,66,0.58); font-weight: 700; margin-bottom: 0.6rem; }
.pr-sidebar-rule { height: 1px; background: linear-gradient(90deg, var(--gold), transparent); opacity: 0.14; margin-bottom: 1rem; }
.pr-sidebar-row { display: flex; flex-direction: column; gap: 0.15rem; margin-bottom: 0.85rem; }
.pr-sidebar-row:last-child { margin-bottom: 0; }
.pr-sb-label { font-size: 0.54rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,200,66,0.36); }
.pr-sb-val { font-size: 0.82rem; color: var(--cream-dim); line-height: 1.4; }
.pr-sb-url { color: var(--neon-blue) !important; font-size: 0.72rem; word-break: break-word; }

.pr-sidebar-quote {
  padding: 1rem 1rem 1rem 1rem;
  border-left: 2px solid rgba(245,200,66,0.35);
  background: linear-gradient(135deg, rgba(245,200,66,0.03), transparent);
}
.pr-sq-mark { font-family: 'Playfair Display', serif; font-size: 3rem; line-height: 0.6; color: var(--gold); opacity: 0.22; margin-bottom: 0.5rem; }
.pr-sidebar-quote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.88rem; line-height: 1.75; color: var(--cream-dim); margin-bottom: 0.6rem; }
.pr-sq-source { font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,200,66,0.38); }

.pr-tag-cloud { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pr-tag {
  font-size: 0.6rem; letter-spacing: 1px; color: rgba(245,200,66,0.48);
  border: 1px solid var(--border-gold); padding: 0.2rem 0.5rem;
  background: rgba(245,200,66,0.02); transition: background 0.3s, color 0.3s; cursor: default;
}
.pr-tag:hover { background: rgba(245,200,66,0.07); color: var(--gold); }

.pr-body-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.pr-body-p { color: var(--cream-dim); font-size: 0.93rem; line-height: 2; margin-bottom: 1.2rem; }
.pr-body-p strong { color: var(--cream); font-weight: 600; }
.pr-dropcap {
  float: left; font-family: 'Playfair Display', serif;
  font-size: 4.2rem; font-weight: 900; line-height: 0.72;
  margin-right: 0.1em; margin-top: 0.1em;
  color: var(--gold); text-shadow: 0 0 30px rgba(245,200,66,0.32);
}

.pr-pull-quote {
  margin: 0 0 1.5rem; padding: 1.4rem;
  border: 1px solid var(--border-gold);
  background: rgba(245,200,66,0.025); position: relative;
}
.pr-pull-quote::before {
  content: '"'; position: absolute; top: -0.6rem; left: 1rem;
  font-family: 'Playfair Display', serif; font-size: 3.5rem; line-height: 1;
  color: var(--gold); opacity: 0.18;
}
.pr-pull-quote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; line-height: 1.75; color: rgba(245,200,66,0.78); }

.pr-bottom-bar { margin-top: 3rem; }
.pr-bottom-line { height: 1px; background: linear-gradient(90deg, transparent, rgba(245,200,66,0.28), transparent); margin-bottom: 1.5rem; }
.pr-bottom-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.pr-bottom-left { display: flex; align-items: center; gap: 0.8rem; }
.pr-bottom-tag { font-size: 0.58rem; font-weight: 800; letter-spacing: 4px; color: var(--bg-black); background: var(--gold); padding: 0.22rem 0.65rem; }
.pr-bottom-note { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,200,66,0.3); }
.pr-visit-btn {
  display: inline-block; text-decoration: none;
  border: 1px solid var(--border-gold2); color: var(--gold);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  padding: 0.65rem 1.5rem; transition: background 0.3s, box-shadow 0.3s;
}
.pr-visit-btn:hover { background: rgba(245,200,66,0.07); box-shadow: 0 0 20px rgba(245,200,66,0.14); }

/* ═══════════════════════════════════════
   PRODUCTS  — bg-dark
═══════════════════════════════════════ */
#products { background: var(--bg-dark); padding: var(--section-pad); }
.products-inner { max-width: var(--max-w); margin: 0 auto; }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem; }
.products-subtext { color: rgba(245,239,230,0.4); max-width: 320px; font-size: 0.9rem; line-height: 1.7; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.product-card {
  background: var(--bg-brick); border: 1px solid var(--border-cream);
  position: relative; overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-color: var(--border-gold2); }
.product-img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a1a0e 0%, #0d0a08 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative; overflow: hidden;
}
.product-img span { position: relative; z-index: 1; }
.product-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,10,8,0.6), transparent 60%);
}
.img-mie  { background: linear-gradient(135deg, #2d1f0f, #120a04); }
.img-nasi { background: linear-gradient(135deg, #241508, #0e0603); }
.img-teh  { background: linear-gradient(135deg, #2a1a0a, #100805); }
.img-ayam { background: linear-gradient(135deg, #1e1008, #0a0503); }
.img-kue  { background: linear-gradient(135deg, #281505, #110701); }
.product-badge {
  position: absolute; top: 0.8rem; left: 0.8rem;
  background: var(--neon-yell); font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--bg-black); font-weight: 800; padding: 0.25rem 0.6rem; z-index: 2;
  box-shadow: 0 0 12px rgba(255,233,58,0.4);
}
.product-body { padding: 1.4rem; }
.product-line { width: 0; height: 2px; background: linear-gradient(90deg, var(--orange), var(--neon-yell)); transition: width 0.4s ease; margin-bottom: 0.8rem; }
.product-card:hover .product-line { width: 40px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.product-desc { font-size: 0.85rem; color: rgba(245,239,230,0.5); line-height: 1.7; margin-bottom: 1rem; }
.product-price { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--orange); text-shadow: 0 0 10px rgba(232,119,34,0.3); }

/* ═══════════════════════════════════════
   CONTACT  — bg-brick
═══════════════════════════════════════ */
#contact { background: var(--bg-brick); padding: var(--section-pad); position: relative; overflow: hidden; }
#contact::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,240,240,0.2), transparent);
}
.contact-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.contact-header-col > p:not(.section-tag) {
  color: var(--cream-dim); line-height: 1.85; font-size: 0.97rem; margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 42px; height: 42px; border: 1px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--neon-yell); margin-bottom: 0.3rem; }
.contact-item-text span,
.contact-item-text a { color: var(--cream-dim); font-size: 0.95rem; text-decoration: none; transition: color 0.3s; }
.contact-item-text a:hover { color: var(--neon-blue); }

/* Right column: info card */
.contact-info-col {
  background: rgba(245,239,230,0.02);
  border: 1px solid var(--border-cream);
  padding: 2.5rem;
}
.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.4rem;
}
.contact-info-sub {
  font-size: 0.82rem; color: var(--cream-low); line-height: 1.7;
  margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-cream);
}
.contact-info-col .contact-icon { border-color: var(--border-gold); }
.contact-info-col .contact-item-text strong { color: var(--gold); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--bg-black); padding: 2.5rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid var(--border-gold);
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; color: var(--neon-yell); text-shadow: 0 0 20px rgba(255,233,58,0.35); }
footer p { color: rgba(245,239,230,0.22); font-size: 0.8rem; }
.footer-credit { color: rgba(245,239,230,0.38) !important; font-size: 0.85rem !important; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .pr-columns   { grid-template-columns: 1fr; }
  .pr-sidebar   { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border-gold); padding-bottom: 2rem; }
  .pr-body-cols { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  :root { --section-pad: 4rem 5%; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-neon-ring { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat-item { border-right: none; margin-right: 0; padding-right: 0; }
  .nav-links { display: none; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .vibe-icons { gap: 2rem; }
}
@media (max-width: 600px) {
  .pr-banner-word { font-size: 2.2rem; }
  .pr-masthead-side { display: none; }
}