/* ==================================================
   css/style.css
   WONDERGROUP - Clean Japanese Corporate x Minimal Premium Brand Hub
================================================== */

:root {
  --ink: #1f1f1f;
  --ink-soft: #3a3436;
  --muted: #7b7375;

  --white: #ffffff;
  --ivory: #fbfaf7;
  --cream: #f8f4ed;
  --beige: #eee5d8;

  --gold: #b89b5e;
  --gold-soft: #e6d6b6;
  --gold-pale: #f7f0df;

  --rose: #d98b98;
  --rose-soft: #f8e9ec;

  --line: #06c755;

  --border: rgba(31,31,31,.09);
  --border-gold: rgba(184,155,94,.25);

  --shadow-sm: 0 10px 30px rgba(31,31,31,.06);
  --shadow-md: 0 22px 60px rgba(31,31,31,.08);
  --shadow-lg: 0 35px 100px rgba(31,31,31,.12);

  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;

  --ease: cubic-bezier(.22,1,.36,1);
}

/* ==================================================
   RESET / BASE
================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(184,155,94,.08), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(217,139,152,.07), transparent 32%),
    linear-gradient(180deg, #fff 0%, var(--ivory) 46%, #fff 100%);
  line-height: 1.75;
  letter-spacing: .01em;
  font-size: 14px;
  padding-bottom: 76px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31,31,31,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,31,31,.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.32), transparent 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', 'Noto Sans JP', serif;
  color: var(--ink);
}

::selection {
  background: rgba(184,155,94,.22);
  color: var(--ink);
}

.container-premium {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* ==================================================
   NAVBAR
================================================== */

.navbar {
  min-height: 74px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(31,31,31,.06);
  box-shadow: 0 12px 34px rgba(31,31,31,.045);
}

.navbar .container-premium {
  gap: 12px;
}

.navbar-brand {
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 1.05rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--ink) !important;
}

.brand-text {
  display: inline-flex;
  align-items: center;
  letter-spacing: .12em;
  font-weight: 900;
  line-height: 1;
}

.brand-wonder {
  color: var(--ink);
}

.brand-group {
  background: linear-gradient(135deg, #8d6a25, #d8c58d, #8d6a25);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-mark {
  width: 48px;
  height: 40px;
  min-width: 48px;
  border-radius: 0;
  background: url('../assets/images/wondergroup-logo.png') center / contain no-repeat;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  box-shadow: none;
  border: 0;
  overflow: visible;
}

.brand-mark .material-icons {
  display: none;
}

.nav-link {
  position: relative;
  font-weight: 800;
  color: #4b4647 !important;
  font-size: .86rem;
  border-radius: 999px;
  padding: .54rem .86rem !important;
  transition: all .28s var(--ease);
}

.nav-link.active,
.nav-link:hover {
  background: var(--gold-pale);
  color: #6d5524 !important;
  box-shadow: none;
}

.navbar-toggler {
  border: 0;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(184,155,94,.18);
}

/* ==================================================
   BUTTONS
================================================== */

.btn-lux,
.btn-gold,
.btn-line,
.btn-ghost {
  border-radius: 999px;
  font-weight: 800;
  padding: .72rem 1.25rem;
  font-size: .84rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all .32s var(--ease);
  text-decoration: none;
}

.btn-lux {
  border: 1px solid rgba(31,31,31,.08);
  background: var(--ink);
  color: #fff !important;
  box-shadow: 0 18px 42px rgba(31,31,31,.16);
}

.btn-gold {
  border: 1px solid var(--border-gold);
  background:
    linear-gradient(135deg, #fff, var(--gold-pale));
  color: #5c461c !important;
  box-shadow: 0 16px 42px rgba(184,155,94,.16);
}

.btn-line {
  border: 0;
  background: linear-gradient(135deg, #06d45d, #04ad49);
  color: #fff !important;
  box-shadow: 0 16px 36px rgba(6,199,85,.28);
}

.btn-ghost {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.78);
  color: var(--ink) !important;
  box-shadow: 0 12px 28px rgba(31,31,31,.045);
}

.btn-lux:hover,
.btn-gold:hover,
.btn-line:hover,
.btn-ghost:hover {
  transform: translateY(-3px);
  opacity: .95;
}
.btn-lux:hover,
.btn-lux:focus,
.btn-lux:active {
  background: linear-gradient(135deg, #6d5524, #b89b5e);
  border-color: rgba(184,155,94,.7);
  color: #fff !important;
  box-shadow: 0 18px 44px rgba(184,155,94,.25);
  opacity: 1;
}
.btn.btn-lux,
a.btn.btn-lux {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: #fff !important;
}

.btn.btn-lux:hover,
.btn.btn-lux:focus,
.btn.btn-lux:active,
a.btn.btn-lux:hover,
a.btn.btn-lux:focus,
a.btn.btn-lux:active {
  background: linear-gradient(135deg, #6d5524, var(--gold)) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
  opacity: 1 !important;
  box-shadow: 0 18px 44px rgba(184,155,94,.28);
}

.btn.btn-lux:hover .material-icons,
.btn.btn-lux:focus .material-icons,
.btn.btn-lux:active .material-icons {
  color: #fff !important;
}
.hero-content .btn-lux,
.hero-content .btn-gold,
.hero-content .btn-ghost {
  min-height: 43px;
  padding: .72rem 1.25rem;
  font-size: .84rem;
  line-height: 1.2;
  gap: 0;
}

.btn.btn-ghost,
a.btn.btn-ghost {
  border: 1px solid rgba(31,31,31,.12) !important;
  background: rgba(255,255,255,.82) !important;
  color: var(--ink) !important;
  box-shadow: 0 12px 28px rgba(31,31,31,.045);
}

.btn.btn-ghost:hover,
.btn.btn-ghost:focus,
.btn.btn-ghost:active,
a.btn.btn-ghost:hover,
a.btn.btn-ghost:focus,
a.btn.btn-ghost:active {
  background: linear-gradient(135deg, #fff, var(--gold-pale)) !important;
  border-color: var(--border-gold) !important;
  color: #6d5524 !important;
  opacity: 1 !important;
  box-shadow: 0 16px 42px rgba(184,155,94,.16);
}

.btn.btn-ghost:hover .material-icons,
.btn.btn-ghost:focus .material-icons,
.btn.btn-ghost:active .material-icons {
  color: #6d5524 !important;
}
.tour-card.dark .btn-ghost,
.tour-cta .btn-ghost,
.partner-card.featured .btn-ghost,
.partner-cta .btn-ghost,
.contact-cta .btn-ghost,
.home-cta .btn-ghost {
  background: rgba(255,255,255,.92) !important;
  color: var(--ink) !important;
  border-color: rgba(255,255,255,.72) !important;
}

.tour-card.dark .btn-ghost:hover,
.tour-cta .btn-ghost:hover,
.partner-card.featured .btn-ghost:hover,
.partner-cta .btn-ghost:hover,
.contact-cta .btn-ghost:hover,
.home-cta .btn-ghost:hover {
  background: linear-gradient(135deg, #fff, var(--gold-pale)) !important;
  color: #6d5524 !important;
  border-color: var(--gold) !important;
}

/* ==================================================
   COMMON COMPONENTS
================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  color: #6d5524;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--border-gold);
  font-weight: 850;
  font-size: .66rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(184,155,94,.1);
  backdrop-filter: blur(14px);
}

.section {
  position: relative;
  padding: 84px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 8% 20%, rgba(184,155,94,.08), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(217,139,152,.06), transparent 32%),
    linear-gradient(135deg, #fff, var(--ivory));
}

.section-title {
  font-weight: 850;
  font-size: clamp(1.55rem, 2.35vw, 2.25rem);
  letter-spacing: -.035em;
  line-height: 1.22;
}

.section-subtitle {
  color: var(--muted);
  max-width: 720px;
  line-height: 1.9;
  font-size: .92rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-gold);
  color: #6d5524;
  font-weight: 750;
  padding: .28rem .64rem;
  font-size: .72rem;
  margin: 3px;
  box-shadow: 0 8px 20px rgba(31,31,31,.035);
}

.icon-lux {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fff, var(--gold-pale));
  color: #6d5524;
  box-shadow: 0 14px 34px rgba(184,155,94,.16);
}

.icon-lux .material-icons {
  font-size: 30px;
}

/* ==================================================
   CARDS
================================================== */

.premium-card {
  height: 100%;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(31,31,31,.07);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  padding: 26px;
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease);
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.premium-card h3,
.home-feature-card h3,
.contact-category-card h3 {
  font-size: 1rem;
  line-height: 1.45;
}

.premium-card p,
.home-feature-card p,
.contact-category-card p {
  font-size: .86rem;
  line-height: 1.8;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.6), transparent 42%),
    radial-gradient(circle at 96% 4%, rgba(184,155,94,.08), transparent 28%);
  pointer-events: none;
}

.premium-card > * {
  position: relative;
  z-index: 1;
}

.premium-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184,155,94,.28);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.black-card {
  padding: 34px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(184,155,94,.20), transparent 30%),
    linear-gradient(135deg, #1f1f1f, #393536);
  box-shadow: var(--shadow-lg);
}

.black-card h1,
.black-card h2,
.black-card h3 {
  color: #fff;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.stat-box {
  padding: 18px;
  border-radius: 18px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(31,31,31,.045);
  transition: all .3s var(--ease);
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.stat-box strong {
  color: #6d5524;
  font-size: 1.08rem;
}

.stat-box small {
  color: var(--muted);
  font-weight: 800;
}

.black-card .stat-box {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
}

.black-card .stat-box strong {
  color: #f4dfaa;
}

.black-card .stat-box small {
  color: rgba(255,255,255,.72);
}

/* ==================================================
   HERO / CAMPAIGN CARD
================================================== */

.hero-beauty {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
  background:
    radial-gradient(circle at 82% 20%, rgba(184,155,94,.15), transparent 30%),
    linear-gradient(120deg, rgba(255,255,255,.98), rgba(250,247,240,.92) 48%, rgba(238,229,216,.86));
}

.hero-beauty::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.84) 45%, rgba(255,255,255,.18) 76%),
    url('../assets/images/hero-beauty.jpg') center right / cover no-repeat;
  z-index: 0;
}

.hero-beauty::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -160px;
  top: -160px;
  background: rgba(255,255,255,.36);
  border: 1px solid rgba(184,155,94,.18);
  pointer-events: none;
  z-index: 1;
}

.hero-beauty .container-premium {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding-left: 20px;
}

.hero-title {
  margin-top: 16px;
  font-size: clamp(1.65rem, 3.1vw, 2.75rem);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: -0.035em;
  max-width: 480px;
}

.hero-title span {
  display: inline-block;
  background: linear-gradient(135deg, #6d5524, #d8a84d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  margin-top: 20px;
  font-size: .92rem;
  line-height: 1.95;
  color: var(--muted);
  max-width: 560px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badge {
  min-width: 122px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(31,31,31,.06);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.hero-badge strong {
  display: block;
  font-size: .92rem;
  letter-spacing: .02em;
}

.hero-badge small {
  color: var(--muted);
  font-size: .74rem;
}

/* Desktop campaign card */
.campaign-card {
  position: absolute;
  right: 8%;
  bottom: 60px;
  z-index: 3;
  width: min(360px, 90%);
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(31,31,31,.07);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.campaign-card h2 {
  font-size: 1.05rem;
  line-height: 1.55;
}

.campaign-card p {
  font-size: .84rem;
  line-height: 1.8;
}

.campaign-card .big {
  color: #6d5524;
  font-size: 1.9rem;
  font-weight: 900;
}

/* Tablet: campaign card jadi normal block, tidak nabrak */
@media (max-width: 991.98px) {
  .hero-beauty {
    display: block;
    min-height: auto;
    padding: 100px 0 56px;
  }

  .hero-beauty::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 54%, rgba(255,255,255,.46) 100%),
      url('../assets/images/hero-beauty.jpg') bottom center / cover no-repeat;
  }

  .hero-content {
    max-width: 560px;
    padding-left: 0;
  }

  .campaign-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: min(520px, 100%);
    max-width: 520px;
    margin: 34px auto 0;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .hero-beauty {
    padding: 96px 0 46px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 1.85rem;
    letter-spacing: -.03em;
  }

  .hero-lead {
    font-size: .9rem;
    line-height: 1.9;
  }

  .hero-badge {
    width: 100%;
  }

  .campaign-card {
    width: 100%;
    margin-top: 28px;
    padding: 22px;
    border-radius: 22px;
  }

  .campaign-card .big {
    font-size: 1.42rem;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 1.65rem;
  }
}

/* ==================================================
   IMAGE PANELS
================================================== */

.visual-panel {
  min-height: 440px;
  aspect-ratio: 16 / 10;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.58)),
    url('../assets/images/beauty-lifestyle.jpg') center / cover no-repeat;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.visual-panel::after {
  content: "WONDERGROUP";
  position: absolute;
  right: 28px;
  bottom: 26px;
  color: rgba(255,255,255,.94);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-shadow: 0 10px 30px rgba(0,0,0,.24);
}

.liver-box {
  border-radius: 32px;
  padding: 50px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.78)),
    url('../assets/images/liver-beauty.jpg') center right / cover no-repeat;
  box-shadow: var(--shadow-md);
}

/* ==================================================
   PAGE HEADER
================================================== */

.page-head {
  position: relative;
  overflow: hidden;
  padding: 132px 0 68px;
  background:
    radial-gradient(circle at 85% 12%, rgba(184,155,94,.12), transparent 38%),
    radial-gradient(circle at 15% 80%, rgba(217,139,152,.07), transparent 34%),
    linear-gradient(135deg, #fff, #fbfaf7 62%, #f5efe4);
}

.page-head::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -210px;
  top: -210px;
  background: radial-gradient(circle, rgba(184,155,94,.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-head .container-premium {
  position: relative;
  z-index: 1;
}

.page-head h1 {
  font-weight: 900;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  letter-spacing: -.05em;
}

/* ==================================================
   FORM / FAQ / NEWS / LEGAL
================================================== */

.form-preview {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.form-control,
.form-select,
.form-preview input,
.form-preview select {
  border-radius: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(31,31,31,.12);
  background: rgba(255,255,255,.92);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(184,155,94,.56);
  box-shadow: 0 0 0 .25rem rgba(184,155,94,.12);
}

.accordion-item {
  background: rgba(255,255,255,.86) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(31,31,31,.07) !important;
  box-shadow: var(--shadow-sm) !important;
}

.accordion-button {
  padding: 1.2rem 1.35rem;
  color: var(--ink);
  background: rgba(255,255,255,.88);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: #6d5524;
  background: var(--gold-pale);
}

.accordion-body {
  color: var(--muted);
}

.news-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px;
  border-bottom: 1px solid var(--border);
  transition: all .3s var(--ease);
}

.news-item:hover {
  background: linear-gradient(90deg, rgba(247,240,223,.75), rgba(255,255,255,.55));
}

.news-date {
  font-weight: 900;
  color: #6d5524;
  white-space: nowrap;
  background: #fff;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  padding: .36rem .74rem;
}

.legal-box {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

/* ==================================================
   BRAND HUB / SHOP.PHP
================================================== */

.brand-hub-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 92px;
  background:
    radial-gradient(circle at 84% 18%, rgba(184,155,94,.13), transparent 34%),
    radial-gradient(circle at 14% 86%, rgba(217,139,152,.07), transparent 34%),
    linear-gradient(135deg, #fff, #fbfaf7 60%, #f5efe4);
}

.brand-hub-hero::after {
  content: "";
  position: absolute;
  right: -190px;
  top: -190px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(184,155,94,.14);
}

.brand-hub-hero .container-premium {
  position: relative;
  z-index: 2;
}

.brand-hub-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.05em;
  margin-top: 20px;
}

.brand-hub-title span {
  color: #6d5524;
}

.brand-hub-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 2;
}

.brand-showcase {
  padding: 90px 0;
}

.brand-showcase-card {
  position: relative;
  min-height: 520px;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 46px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: .38s var(--ease);
}

.brand-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 44px 110px rgba(31,31,31,.20);
}

.brand-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.64)),
    radial-gradient(circle at 86% 10%, rgba(255,255,255,.18), transparent 28%);
  z-index: 1;
}

.brand-showcase-card > div {
  position: relative;
  z-index: 2;
}

.brand-wonders {
  background: url('../assets/images/beauty-lifestyle.jpg') center / cover no-repeat;
}

.brand-pretty {
  background: url('../assets/images/hero-beauty.jpg') center / cover no-repeat;
}

.brand-showcase-card h2 {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  font-weight: 850;
  margin-bottom: 12px;
}

.brand-showcase-card p {
  max-width: 430px;
  color: rgba(255,255,255,.88);
  line-height: 1.85;
  font-size: .9rem;
}

.brand-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: .68rem;
  font-weight: 850;
  margin-bottom: 14px;
}

.brand-story-card {
  height: 100%;
  padding: 34px;
  border-radius: 26px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.brand-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.brand-feature {
  padding: 28px 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.brand-feature .material-icons {
  font-size: 32px;
  color: #6d5524;
  margin-bottom: 12px;
}

.brand-feature strong {
  display: block;
  font-size: 1.05rem;
}

.brand-feature small {
  color: var(--muted);
}

.brand-flow {
  border-radius: 32px;
  padding: 42px;
  background:
    radial-gradient(circle at 10% 10%, rgba(184,155,94,.10), transparent 32%),
    linear-gradient(135deg, #fff, var(--ivory));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

/* ==================================================
   FOOTER
================================================== */

footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(184,155,94,.16), transparent 30%),
    linear-gradient(135deg, #1f1f1f, #343031);
  color: #fff;
  padding: 62px 0 32px;
}

footer h1,
footer h2,
footer h3 {
  color: #fff;
}

footer a {
  color: rgba(255,255,255,.74);
  transition: .25s var(--ease);
}

footer a:hover {
  color: #fff;
  padding-left: 4px;
}

/* ==================================================
   FLOATING LINE / UTILITIES
================================================== */

.fixed-line {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 999;
  display: none;
}

.fixed-line .btn {
  width: 100%;
  box-shadow: 0 16px 36px rgba(6,199,85,.30);
}

.gold-text {
  background: linear-gradient(135deg, #8d6a25, #d8c58d, #8d6a25);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rounded-lux {
  border-radius: var(--radius-lg);
}

.text-muted {
  color: var(--muted) !important;
}

.table th {
  color: #6d5524;
  font-weight: 900;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1199.98px) {
  .nav-link {
    font-size: .82rem;
    padding: .5rem .65rem !important;
  }
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: 82px;
  }

  .container-premium {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar .container-premium {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .navbar-brand {
    flex: 1;
    max-width: calc(100% - 70px);
  }

  .navbar-toggler {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    margin-top: 14px;
    padding: 14px;
    background: rgba(255,255,255,.96);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
  }

  .navbar-nav,
  .navbar-nav .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    display: block;
    padding: 12px 16px !important;
    border-radius: 12px;
    font-size: .95rem;
    line-height: 1.4;
    text-align: left;
    white-space: normal;
    background: transparent;
    box-shadow: none;
  }

  .nav-link.active {
    background: var(--gold-pale);
    color: #6d5524 !important;
    box-shadow: none;
  }

  .nav-link:hover {
    background: rgba(247,240,223,.72);
    box-shadow: none;
  }

  .section,
  .brand-showcase {
    padding: 62px 0;
  }

  .premium-card {
    padding: 26px;
  }

  .visual-panel {
    aspect-ratio: 4 / 3;
    min-height: 320px;
    background-position: center;
  }

  .liver-box {
    padding: 32px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.86)),
      url('../assets/images/liver-beauty.jpg') center / cover no-repeat;
  }

  .brand-hub-hero {
    padding: 120px 0 70px;
  }

  .brand-showcase-card {
    min-height: 380px;
    padding: 34px;
    border-radius: 30px;
  }

  .brand-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-flow {
    padding: 30px;
  }

  .fixed-line {
    display: block;
  }

  .news-item {
    display: block;
  }

  .news-date {
    display: inline-flex;
    margin-bottom: 12px;
  }

  footer {
    padding-bottom: 90px;
  }
}

@media (max-width: 575.98px) {
  .container-premium {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar-brand {
    font-size: .9rem;
    letter-spacing: .04em;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    margin-right: 8px;
  }

  .brand-mark .material-icons {
    font-size: 20px;
  }

  .hero-beauty {
  padding: 96px 0 46px;
}
  .hero-title {
    font-size: 1.85rem;
    letter-spacing: -.03em;
  }

  .hero-lead {
    font-size: .95rem;
  }

  .hero-badge {
    width: 100%;
  }

  .campaign-card .big {
    font-size: 1.42rem;
  }

  .section-title {
  font-size: 1.45rem;
  letter-spacing: -.025em;
  }

  .section-subtitle {
    font-size: .92rem;
  }

  .premium-card {
    border-radius: 22px;
    padding: 20px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .btn-lux,
  .btn-gold,
  .btn-line,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .visual-panel {
    aspect-ratio: 1 / 1;
    min-height: 260px;
    border-radius: 22px;
  }

  .visual-panel::after {
    font-size: 1.1rem;
    right: 18px;
    bottom: 16px;
  }

  .liver-box {
    padding: 24px 18px;
  }

  .chip {
    font-size: .78rem;
  }

  .brand-hub-title {
    font-size: 2.25rem;
  }

  .brand-showcase-card {
    min-height: 320px;
    padding: 26px;
  }

  .brand-feature-grid {
    grid-template-columns: 1fr;
  }

  .fixed-line {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .section-title {
    font-size: 1.32rem;
  }

  .brand-hub-title {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
.map-box {
  width: 100%;
  height: 460px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.store-card {
  background: #fff;
  border-radius: 28px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
}

.store-title {
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.map-box {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
h1,
h2,
h3 {
  font-weight: 850;
}

small,
.text-muted,
p {
  font-weight: 400;
}

.material-icons {
  font-size: 1.08em;
}