/* ============================================================
   SANOEBARI FRAGRANCE — POP ART × MINIMALIST DESIGN SYSTEM
   Palette: Red #F22613 · Orange #FF8C42 · Yellow #FFD23F ·
            Green #2EC27E · Neutral #F2F2F2 · Charcoal #090718
   ============================================================ */
:root {
  --red: #F22613;
  --red-dark: #C81E0D;
  --orange: #FF8C42;
  --yellow: #FFD23F;
  --green: #2EC27E;
  --green-dark: #1FA365;
  --bg: #F2F2F2;
  --ink: #090718;
  --ink-2: #2F2F2F;
  --ink-3: #6B6B6B;
  --white: #FFFFFF;
  --line: #E3E3E3;

  --font-head: 'Bricolage Grotesque', 'Helvetica', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'League Gothic', 'Helvetica', sans-serif;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 10px;
  --shadow: 0 14px 40px rgba(9, 7, 24, 0.08);
  --shadow-lg: 0 24px 60px rgba(9, 7, 24, 0.14);

  --header-h: 78px;
  --container: 1200px;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pre-loader-mark {
  width: 110px;
  height: 110px;
  object-fit: contain;
  background: var(--white);
  border-radius: 14px;
  padding: 8px;
  transform: rotate(-6deg);
  box-shadow: 6px 6px 0 var(--orange);
  animation: prePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pre-loader-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-top: 10px;
}

.preloader-inner small {
  opacity: 0.7;
  font-size: 0.85rem;
  max-width: 280px;
}

.pre-loader-bar {
  margin-top: 16px;
  width: 200px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.pre-loader-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green));
  animation: preLoad 1.4s ease forwards;
}

@keyframes preLoad {
  to { width: 100%; }
}

@keyframes prePop {
  0% { transform: rotate(-6deg) scale(0.4); opacity: 0; }
  70% { transform: rotate(-6deg) scale(1.12); }
  100% { transform: rotate(-6deg) scale(1); opacity: 1; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 242, 242, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--ink);
  transition: box-shadow 0.3s ease, transform 0.35s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(9, 7, 24, 0.08);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: contain;
  background: var(--white);
  padding: 3px;
  box-shadow: 4px 4px 0 var(--yellow);
  transform: rotate(-5deg);
  transition: transform 0.25s ease;
}

.logo:hover .logo-mark {
  transform: rotate(5deg) scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text b {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-text small {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  color: var(--ink-2);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: var(--ink);
  background: rgba(9, 7, 24, 0.05);
}

.nav-link.is-active {
  color: var(--red);
  background: rgba(242, 38, 19, 0.08);
}

.nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 3px;
  border-radius: 99px;
  background: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 2px solid var(--ink);
  background: var(--white);
  place-items: center;
  color: var(--ink);
}

.nav-burger svg {
  width: 22px;
  height: 22px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  line-height: 1.2;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-outline {
  background: var(--white);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-outline:hover {
  background: var(--yellow);
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(9, 7, 24, 0.35);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--white);
}

.btn-light {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-light:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-lg {
  padding: 15px 28px;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn-sm {
  padding: 9px 14px;
  font-size: 0.85rem;
  border-radius: 10px;
}

.btn-block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: 4px 4px 0 var(--ink) !important;
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section-head {
  margin-bottom: 40px;
}

.section-head.is-center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kick, var(--red));
  background: color-mix(in srgb, var(--kick, var(--red)) 12%, transparent);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
  border: 1.5px solid transparent;
}

.is-center .kicker {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.section-title em {
  font-style: normal;
  color: var(--red);
}

.section-sub {
  margin-top: 12px;
  color: var(--ink-3);
  font-size: 1.02rem;
  max-width: 560px;
}

.is-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- outline headings ---------- */
.tl-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  background-clip: text;
  -webkit-background-clip: text;
}

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 72px;
}

/* ---------- hero image (right side) ---------- */
.hero-img {
  position: relative;
  width: 100%;
  height: 480px;
  background-image: url('../asset/hr1.PNG');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 12px 12px 0 var(--red);
  transform: rotate(2deg);
}

.hero-bg-dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(rgba(9, 7, 24, 0.13) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-kicker {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 22px;
  box-shadow: 4px 4px 0 var(--orange);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-2);
  max-width: 500px;
  margin-bottom: 30px;
}

.hero-sub b {
  color: var(--red);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 34px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  background: var(--white);
  margin-left: -12px;
}

.trust-avatars span:first-child {
  margin-left: 0;
}

.hero-trust p {
  font-size: 0.85rem;
  color: var(--ink-3);
  line-height: 1.4;
}

.hero-trust p b {
  color: var(--ink);
}

.stars-small {
  color: var(--yellow);
  letter-spacing: 2px;
  text-shadow: 0 1px 0 rgba(9, 7, 24, 0.3);
}

/* ---------- hero visual ---------- */
.hero-illustration {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.hi-bubble {
  position: absolute;
  top: 8%;
  right: 2%;
  z-index: 6;
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  padding: 12px 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 6px 6px 0 var(--red);
  transform: rotate(4deg);
  animation: floaty 5s ease-in-out infinite;
}

.hi-shape {
  position: absolute;
  z-index: 0;
}

.hi-sun {
  top: 6%;
  left: 4%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--hs, var(--yellow));
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--hs, var(--yellow)) 35%, transparent);
  animation: spinSlow 14s linear infinite;
}

.hi-ring {
  bottom: 10%;
  right: 6%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 12px solid var(--hs, var(--red));
  animation: pulseRing 3s ease-in-out infinite;
}

/* ---------- hero bottles ---------- */
.hero-bottles {
  position: relative;
  z-index: 2;
  width: 230px;
  height: 420px;
}

.hb {
  position: absolute;
  width: 110px;
  border-radius: 26px 26px 14px 14px;
  background: var(--hb);
  display: grid;
  place-items: center;
  box-shadow: 8px 10px 0 rgba(9, 7, 24, 0.85);
  border: 2px solid var(--ink);
  transition: transform 0.3s ease;
}

.hb::before {
  content: '';
  position: absolute;
  top: -34px;
  width: 52px;
  height: 36px;
  background: var(--hb);
  border: 2.5px solid var(--ink);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
}

.hb::after {
  content: '';
  position: absolute;
  top: -42px;
  width: 30px;
  height: 14px;
  background: color-mix(in srgb, var(--hb) 70%, black);
  border: 2px solid var(--ink);
  border-radius: 6px 6px 0 0;
}

.hb-emoji {
  font-size: 2.6rem;
  filter: drop-shadow(0 3px 2px rgba(9, 7, 24, 0.3));
  transform: translateY(-8px);
}

.hb-1 {
  left: 0;
  top: 60px;
  height: 150px;
  transform: rotate(-8deg);
  animation: floaty 4.5s ease-in-out infinite;
}

.hb-2 {
  right: 0;
  top: 20px;
  height: 175px;
  transform: rotate(9deg);
  animation: floaty 5s ease-in-out 0.6s infinite;
}

.hb-3 {
  left: 18px;
  bottom: 8px;
  height: 120px;
  transform: rotate(-4deg);
  animation: floaty 5.5s ease-in-out 1s infinite;
}

.hb-4 {
  right: 6px;
  bottom: 40px;
  height: 100px;
  transform: rotate(6deg);
  animation: floaty 4.8s ease-in-out 0.4s infinite;
}

/* ---------- hero float cards ---------- */
.hero-floats {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.float-card {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 5px 5px 0 var(--fc);
  animation: floaty 5s ease-in-out infinite;
}

.float-card b {
  font-family: var(--font-head);
  font-size: 0.95rem;
}

.float-card small {
  font-size: 0.68rem;
  color: var(--ink-3);
}

.fc-emoji {
  font-size: 1.3rem;
}

.fc-1 { top: 24%; left: -4%; transform: rotate(-6deg); }
.fc-2 { top: 12%; right: -2%; transform: rotate(5deg); animation-delay: 0.8s; }
.fc-3 { bottom: 24%; left: -6%; transform: rotate(5deg); animation-delay: 1.4s; }
.fc-4 { bottom: 12%; right: 0; transform: rotate(-5deg); animation-delay: 0.3s; }

@keyframes floaty {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -14px; }
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.65; }
}

/* ============================================================
   HOME — STEPS BANNER
   ============================================================ */
.steps-section {
  padding: 20px 0 70px;
}

.steps-banner {
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 12px 12px 0 var(--ink);
  position: relative;
  overflow: hidden;
}

.steps-banner::before {
  content: '✦ ✦ ✦';
  position: absolute;
  top: 12px;
  right: 22px;
  font-size: 1.1rem;
  opacity: 0.35;
  letter-spacing: 6px;
}

.steps-title {
  text-align: center;
  margin-bottom: 36px;
}

.steps-title h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.steps-title h2 em {
  font-style: normal;
  color: var(--red);
  background: var(--white);
  padding: 0 10px;
  border-radius: 8px;
  display: inline-block;
  transform: rotate(-1deg);
  border: 2px solid var(--ink);
}

.steps-title p {
  color: var(--ink-2);
  margin-top: 8px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 34px;
}

.step-card {
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  box-shadow: 6px 6px 0 var(--sc);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 10px 12px 0 var(--sc);
}

.step-num {
  position: absolute;
  top: -14px;
  left: 18px;
  background: var(--sc);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 99px;
  border: 2px solid var(--ink);
}

.step-emoji {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 14px;
}

.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.55;
}

.steps-cta {
  margin: 0 auto;
  display: flex;
}

/* ============================================================
   HOME — FEATURED PRODUCTS
   ============================================================ */
.featured-section {
  padding: 70px 0 60px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.featured-more {
  text-align: center;
  margin-top: 34px;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.prod-card {
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 10px 0 var(--pc);
}

.prod-visual {
  position: relative;
  height: 210px;
  background: color-mix(in srgb, var(--pc) 16%, var(--white));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.prod-blob {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 42%;
  background: color-mix(in srgb, var(--pc) 32%, transparent);
  transform: rotate(18deg);
  animation: blobSpin 16s linear infinite;
}

@keyframes blobSpin {
  to { transform: rotate(378deg); }
}

.prod-bottle {
  position: relative;
  z-index: 2;
  width: 68px;
  transition: transform 0.3s ease;
}

.prod-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.35s ease;
}

.prod-card:hover .prod-bottle {
  transform: translateY(-4px) rotate(-3deg);
}

.prod-card:hover .prod-img {
  transform: scale(1.06);
}

.bottle-cap {
  display: block;
  width: 34px;
  height: 16px;
  margin: 0 auto;
  background: var(--pc);
  border: 2px solid var(--ink);
  border-radius: 5px 5px 0 0;
  border-bottom: none;
}

.bottle-body {
  display: block;
  width: 64px;
  height: 118px;
  background: color-mix(in srgb, var(--pc) 78%, white);
  border: 2.5px solid var(--ink);
  border-radius: 8px 8px 16px 16px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.bottle-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  margin-top: 10px;
  color: rgba(9, 7, 24, 0.75);
}

.bottle-emoji {
  display: block;
  font-size: 2rem;
  margin-top: 14px;
  filter: drop-shadow(0 2px 1px rgba(9, 7, 24, 0.25));
}

.prod-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--pc);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 99px;
  border: 2px solid var(--ink);
}

.prod-info {
  padding: 18px 18px 6px;
}

.prod-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.prod-notes span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-3);
  background: var(--bg);
  border-radius: 99px;
  padding: 3px 9px;
}

.prod-name {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.prod-desc {
  font-size: 0.85rem;
  color: var(--ink-3);
  line-height: 1.5;
  margin-bottom: 8px;
}

.prod-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  display: inline-flex;
  gap: 1px;
  color: var(--yellow);
}

.star {
  width: 14px;
  height: 14px;
}

.prod-rating-num {
  font-size: 0.75rem;
  color: var(--ink-3);
}

.prod-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px 18px;
  border-top: 2px dashed var(--line);
  margin-top: 8px;
}

.prod-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
}

/* ============================================================
   HOME — QUOTE & TESTIMONIALS
   ============================================================ */
.quote-section {
  padding: 60px 0 70px;
  background: var(--ink);
  color: var(--white);
  border-radius: 0;
}

.quote-big {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
  padding-top: 50px;
}

.quote-big-mark {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 7rem;
  color: var(--red);
  line-height: 1;
  opacity: 0.6;
}

.quote-big blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.quote-big blockquote em {
  font-style: normal;
  color: var(--yellow);
}

.quote-attrib {
  margin-top: 18px;
  color: var(--ink-3);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.t-card {
  background: var(--white);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  box-shadow: 6px 6px 0 var(--tc);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.t-card:hover {
  transform: translateY(-6px);
  box-shadow: 10px 12px 0 var(--tc);
}

.t-quote-mark {
  position: absolute;
  top: -8px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--tc);
}

.t-text {
  font-size: 0.94rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 16px 0 20px;
}

.t-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 2px dashed var(--line);
  padding-top: 16px;
}

.t-ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: color-mix(in srgb, var(--tc) 20%, white);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.t-footer b {
  font-family: var(--font-head);
  font-size: 0.95rem;
  display: block;
}

.t-footer small {
  color: var(--ink-3);
  font-size: 0.75rem;
}

/* ============================================================
   BANDUNG PRIDE STRIP
   ============================================================ */
.pride-strip {
  background: var(--red);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  padding: 14px 0;
}

.pride-track {
  display: flex;
  gap: 30px;
  white-space: nowrap;
  width: max-content;
  animation: scrollX 22s linear infinite;
}

.pride-track span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  color: var(--white);
}

.pride-track span:nth-child(even) {
  color: var(--yellow);
}

@keyframes scrollX {
  to { transform: translateX(-50%); }
}

/* ============================================================
   PAGE HERO (About / Product / Contact)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 84px;
}

/* ---------- page hero background image ---------- */
.page-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

.page-hero-about .page-hero-img {
  background-image: url('../asset/hr2.png');
  background-position: center center;
  position: relative;
  width: 100%;
  height: 420px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 12px 12px 0 var(--red);
  transform: rotate(-2deg);
  opacity: 1;
}

.page-hero-about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  text-align: left;
}

.page-hero-about-inner .page-hero-copy {
  text-align: left;
}

.page-hero-about-inner .page-hero-title {
  text-align: left;
}

.page-hero-about-inner .page-hero-sub {
  text-align: left;
  margin: 0;
}

.page-hero-product .page-hero-img {
  background-image: url('../asset/hr3.png');
  background-position: center center;
  position: relative;
  width: 100%;
  height: 340px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 12px 12px 0 var(--yellow);
  transform: rotate(-1deg);
  opacity: 1;
}

.page-hero-product-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  text-align: center;
}

.page-hero-product-inner .page-hero-copy {
  text-align: center;
  max-width: 780px;
}

.page-hero-product-inner .page-hero-title {
  text-align: center;
}

.page-hero-product-inner .page-hero-sub {
  text-align: center;
  margin: 0 auto;
}

.page-hero-product-inner .page-hero-ctas {
  justify-content: center;
}

.page-hero-contact .page-hero-img {
  background-image: url('../asset/hr4.png');
  background-position: center center;
  opacity: 0.35;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.phb-dot {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pd);
  border: 2.5px solid var(--ink);
}

.phb-dot:nth-child(1) { top: 22%; left: 6%; }
.phb-dot:nth-child(2) { top: 15%; right: 12%; width: 34px; height: 34px; }
.phb-dot:nth-child(3) { bottom: 18%; left: 14%; width: 30px; height: 30px; }

.phb-ring {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 14px solid var(--pr);
  opacity: 0.25;
  right: 4%;
  bottom: 8%;
  animation: pulseRing 4s ease-in-out infinite;
}

.phb-star {
  position: absolute;
  font-size: 2.4rem;
  color: var(--ps);
  top: 30%;
  right: 24%;
  animation: spinSlow 12s linear infinite;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 18px;
}

.page-hero-sub {
  font-size: 1.08rem;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto;
}

.page-hero-sub b {
  color: var(--red);
}

.page-hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* ============================================================
   ABOUT — STORY
   ============================================================ */
.about-story {
  padding: 20px 0 70px;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-inner > .story-copy {
  max-width: 760px;
}

.story-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.sv-frame {
  width: 300px;
  height: 380px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 12px 12px 0 var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  position: relative;
  transform: rotate(-2deg);
}

.sv-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2.5px dashed rgba(9, 7, 24, 0.55);
  border-radius: 16px;
}

.sv-emoji {
  font-size: 4.4rem;
  filter: drop-shadow(0 5px 4px rgba(9, 7, 24, 0.25));
}

.sv-frame b {
  font-family: var(--font-head);
  font-size: 1.25rem;
  line-height: 1.2;
}

.sv-frame small {
  font-size: 0.78rem;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sv-badge {
  position: absolute;
  background: var(--white);
  border: 2.5px solid var(--ink);
  padding: 8px 16px;
  border-radius: 99px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 4px 4px 0 var(--svc);
  animation: floaty 5s ease-in-out infinite;
}

.sv-b1 { top: 18px; left: -8px; transform: rotate(-5deg); }
.sv-b2 { top: 32%; right: -14px; transform: rotate(4deg); animation-delay: 0.9s; }
.sv-b3 { bottom: 18px; left: 8px; transform: rotate(-3deg); animation-delay: 1.6s; }

.story-copy .section-head {
  margin-bottom: 18px;
}

.story-paras {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-paras p {
  color: var(--ink-2);
  line-height: 1.7;
}

.story-paras b {
  color: var(--ink);
}

.story-paras em {
  color: var(--red);
  font-style: normal;
  font-weight: 600;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.story-tags span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 99px;
  padding: 6px 14px;
  box-shadow: 3px 3px 0 var(--orange);
}

/* ============================================================
   ABOUT — STATS
   ============================================================ */
.stats-section {
  padding: 10px 0 70px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--stc);
  transition: transform 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card b {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--stc);
}

.stat-card span {
  font-size: 0.85rem;
  color: var(--ink-3);
}

/* ============================================================
   ABOUT — CONCEPT
   ============================================================ */
.concept-section {
  padding: 70px 0;
  background: var(--white);
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.concept-card {
  background: var(--bg);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  box-shadow: 6px 6px 0 var(--cc);
  transition: transform 0.25s ease;
}

.concept-card:hover {
  transform: translateY(-6px);
}

.cc-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--cc);
  opacity: 0.7;
}

.cc-icon {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 14px;
}

.concept-card h3 {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.concept-card p {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.6;
}

/* ============================================================
   ABOUT — QUALITY
   ============================================================ */
.quality-section {
  padding: 80px 0;
}

.quality-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.quality-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.quality-copy > p {
  color: var(--ink-2);
  margin-bottom: 22px;
  line-height: 1.7;
}

.quality-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.quality-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
}

.quality-list li span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 2px solid var(--ink);
}

.quality-list svg {
  width: 14px;
  height: 14px;
}

.quality-list b {
  color: var(--ink);
}

.quality-visual {
  position: relative;
  min-height: 420px;
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 30px 20px 26px;
  overflow: hidden;
}

.quality-visual::before {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.15;
  top: -40px;
  right: -40px;
}

.qv-bottle {
  position: relative;
  width: 80px;
  height: 190px;
  border-radius: 10px 10px 18px 18px;
  background: var(--qv);
  border: 2.5px solid var(--white);
  display: grid;
  place-items: center;
  box-shadow: 4px 6px 0 rgba(0, 0, 0, 0.35);
  transform: translateY(20px);
}

.qv-bottle::before {
  content: '';
  position: absolute;
  top: -32px;
  width: 42px;
  height: 32px;
  background: var(--qv);
  border: 2.5px solid var(--white);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.qv-bottle span {
  font-size: 1.9rem;
  transform: translateY(-6px);
}

.qv-1 { height: 160px; }
.qv-2 { height: 205px; transform: rotate(2deg) translateY(12px); }
.qv-3 { height: 180px; }

.qv-label {
  position: absolute;
  top: 24px;
  left: 20px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.05;
}

.qv-label small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ============================================================
   ABOUT — VALUES
   ============================================================ */
.values-section {
  padding: 70px 0 90px;
  background: var(--yellow);
  border-top: 2.5px solid var(--ink);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  box-shadow: 8px 8px 0 var(--vc);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 12px 14px 0 var(--vc);
}

.value-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--vc);
  opacity: 0.6;
}

.value-emoji {
  font-size: 3.2rem;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 3px rgba(9, 7, 24, 0.15));
}

.value-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.65;
}

.value-corner {
  position: absolute;
  bottom: 10px;
  right: 16px;
  color: var(--vc);
  font-size: 1.4rem;
}

/* ============================================================
   PRODUCT — CATALOG
   ============================================================ */
.catalog-section {
  padding: 10px 0 70px;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.cat-btn {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 99px;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cat-btn span {
  background: var(--bg);
  border-radius: 99px;
  padding: 2px 9px;
  font-size: 0.75rem;
  color: var(--ink-3);
}

.cat-btn.is-active {
  background: var(--red);
  color: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(-1px, -1px);
}

.cat-btn.is-active span {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.catalog-grid-wrap {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.catalog-grid-wrap.cat-swap {
  opacity: 0;
  transform: translateY(8px);
}

.catalog-empty {
  text-align: center;
  color: var(--ink-3);
  padding: 40px 0;
}

/* ============================================================
   PRODUCT — BUILDER
   ============================================================ */
.builder-section {
  padding: 80px 0;
  background: var(--ink);
  color: var(--white);
}

.builder-intro {
  text-align: center;
  margin-bottom: 44px;
}

.builder-intro h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--white);
}

.builder-intro .tl-outline {
  -webkit-text-stroke-color: var(--yellow);
}

.builder-intro-banner {
  max-width: 680px;
  margin: 18px auto 0;
  background: var(--orange);
  border: 2.5px solid var(--white);
  border-radius: 14px;
  padding: 14px 22px;
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 500;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
}

.builder-intro-banner b {
  color: var(--red);
}

.builder-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

/* ---------- step list (tabs) ---------- */
.step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.builder-step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--white);
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.builder-step:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.builder-step.is-active {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(242, 38, 19, 0.25);
}

.builder-step.is-done {
  border-color: var(--green);
}

.bs-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.builder-step.is-done .bs-num {
  background: var(--green);
  color: var(--white);
}

.builder-step.is-active .bs-num {
  background: var(--white);
  color: var(--red);
}

.bs-num svg {
  width: 14px;
  height: 14px;
}

.bs-info b {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
}

.bs-info small {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

/* ---------- builder card ---------- */
.builder-card {
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--radius-lg);
  border: 2.5px solid var(--white);
  padding: 28px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.45);
}

.builder-card .step-panel-head h3,
.builder-card .step-panel-head p,
.builder-card .step-badge,
.builder-card .ss-label,
.builder-card .ss-chip,
.builder-card .note-name,
.builder-card .note-short {
  color: var(--ink);
}

.step-badge {
  display: inline-block;
  background: var(--yellow);
  border: 2px solid var(--ink);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.step-panel-head h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.step-panel-head p {
  color: var(--ink-3);
  font-size: 0.94rem;
  margin-bottom: 20px;
}

/* ---------- note chips ---------- */
.note-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.note-chip {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  min-width: 0;
}

.note-chip:hover {
  transform: translateY(-3px);
  box-shadow: 4px 4px 0 var(--nc);
  z-index: 2;
}

.note-chip.is-selected {
  background: var(--nc);
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--ink);
  border-width: 2.5px;
}

.note-name {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.2;
}

.note-short {
  display: block;
  font-size: 0.65rem;
  color: var(--ink-3);
  margin-top: 3px;
}

.note-chip.is-selected .note-short {
  color: rgba(9, 7, 24, 0.7);
}

.note-check {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
}

.note-check svg {
  width: 12px;
  height: 12px;
}

/* ---------- step summary + ctas ---------- */
.step-summary {
  margin-top: 22px;
  background: var(--white);
  border: 2px dashed var(--ink);
  border-radius: 12px;
  padding: 14px;
}

.ss-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 8px;
}

.ss-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ss-chip {
  display: inline-block;
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 99px;
  padding: 4px 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ink-3);
}

.ss-chip.is-on {
  background: var(--ssc);
  border-color: var(--ink);
  color: var(--ink);
  transform: rotate(-1deg);
}

.step-ctas {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

/* ---------- preview panel ---------- */
.builder-right {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.preview-panel {
  background: var(--white);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 8px 8px 0 var(--red);
}

.preview-head {
  margin-bottom: 18px;
}

.preview-head .kicker {
  margin-bottom: 8px;
}

.preview-head h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
}

.pv-bottle-wrap {
  display: grid;
  place-items: center;
  min-height: 260px;
  background: var(--bg);
  border: 2px dashed var(--ink);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
  position: relative;
}

.preview-empty {
  text-align: center;
  color: var(--ink-3);
}

.preview-empty span {
  display: block;
  font-size: 3rem;
  margin-bottom: 8px;
  animation: floaty 3s ease-in-out infinite;
}

.preview-empty p {
  font-size: 0.86rem;
  line-height: 1.5;
}

.preview-empty b {
  color: var(--red);
}

.preview-bottle {
  position: relative;
  animation: popIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.preview-bottle.is-pop {
  animation: popHappy 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  0% { transform: scale(0.5) rotate(-8deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

@keyframes popHappy {
  0% { transform: scale(1); }
  35% { transform: scale(1.12) rotate(-4deg); }
  70% { transform: scale(0.96) rotate(3deg); }
  100% { transform: scale(1) rotate(0); }
}

.pv-cap {
  display: block;
  width: 52px;
  height: 22px;
  margin: 0 auto;
  background: var(--pbc);
  border: 2.5px solid var(--ink);
  border-radius: 6px 6px 0 0;
  border-bottom: none;
}

.pv-body {
  display: block;
  width: 110px;
  height: 190px;
  border: 2.5px solid var(--ink);
  border-radius: 12px 12px 20px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  box-shadow: 8px 10px 0 rgba(9, 7, 24, 0.2);
}

.pv-body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent);
}

.pv-name {
  display: block;
  position: relative;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  margin-top: 8px;
  padding: 0 8px;
  line-height: 1.15;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.pv-brand {
  display: block;
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  margin-top: 10px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.pv-vol {
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 2;
  font-size: 0.62rem;
  opacity: 0.9;
}

.preview-badge {
  margin-top: 10px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: 99px;
  padding: 5px 14px;
  display: inline-block;
}

.pv-bottle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pv-progress {
  margin-bottom: 18px;
}

.pv-progress-bar {
  height: 8px;
  background: var(--bg);
  border-radius: 99px;
  overflow: hidden;
  border: 2px solid var(--ink);
}

.pv-progress-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green));
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  width: 0;
}

.pv-progress small {
  display: block;
  text-align: right;
  font-size: 0.72rem;
  color: var(--ink-3);
  margin-top: 4px;
}

.pv-notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.pv-note-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 3px 3px 0 var(--pvr);
}

.pv-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pvr);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  border: 2px solid var(--ink);
  flex-shrink: 0;
}

.pv-note-row b {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--ink);
}

.pv-note-row small {
  font-size: 0.72rem;
  color: var(--ink-3);
}

.order-hint {
  margin-top: 10px;
  font-size: 0.74rem;
  color: var(--ink-3);
  text-align: center;
}

/* ============================================================
   CONTACT — STORES
   ============================================================ */
.stores-section {
  padding: 10px 0 70px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.store-card {
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 8px 8px 0 var(--st);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.store-card:hover {
  transform: translateY(-6px);
}

.store-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.store-emoji {
  font-size: 2.6rem;
}

.store-tag {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  background: var(--st);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 99px;
  border: 2px solid var(--ink);
}

.store-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.store-desc {
  color: var(--ink-3);
  font-size: 0.92rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.store-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.si-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.si-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--st);
}

.si-icon svg {
  width: 18px;
  height: 18px;
}

.si-row p,
.si-row ul {
  font-size: 0.9rem;
  color: var(--ink-2);
  padding-top: 2px;
}

.si-row a {
  color: var(--ink);
  font-weight: 600;
}

.si-row a:hover {
  color: var(--red);
}

.store-hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.store-hours li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.9rem;
}

.store-hours li span {
  color: var(--ink-3);
}

.store-hours li b {
  font-weight: 600;
  white-space: nowrap;
}

.store-maps {
  margin-top: auto;
}

/* ============================================================
   CONTACT — SOCIAL
   ============================================================ */
.social-section {
  padding: 70px 0 80px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.soc-card {
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 6px 6px 0 var(--soc);
  transition: transform 0.25s ease;
}

.soc-card:hover {
  transform: translateY(-5px);
}

.soc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--soc);
  color: var(--white);
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  flex-shrink: 0;
}

.soc-icon svg {
  width: 24px;
  height: 24px;
}

.soc-card b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
}

.soc-card small {
  color: var(--ink-3);
  font-size: 0.82rem;
}

.soc-arrow {
  margin-left: auto;
  font-size: 1.3rem;
  color: var(--ink-3);
  transition: transform 0.2s ease;
}

.soc-card:hover .soc-arrow {
  transform: translate(3px, -3px);
}

.community-banner {
  margin-top: 26px;
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 4px;
}

.community-inner {
  background: linear-gradient(120deg, var(--red), var(--orange));
  border-radius: calc(var(--radius-lg) - 6px);
  border: 2.5px solid var(--ink);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cb-emoji {
  font-size: 3rem;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.3));
}

.community-inner b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--white);
}

.community-inner small {
  color: rgba(255, 255, 255, 0.85);
}

.community-inner .btn {
  margin-left: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1.4fr;
  gap: 44px;
  padding-bottom: 40px;
}

.logo-footer .logo-mark {
  background: var(--white);
  box-shadow: 4px 4px 0 var(--red);
}

.logo-footer .logo-text b {
  color: var(--white);
}

.logo-footer .logo-text small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-manifesto {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  max-width: 360px;
  line-height: 1.65;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  padding: 7px 14px;
  font-size: 0.8rem;
  color: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-pill:hover {
  background: var(--pill);
  border-color: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

.social-pill svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--yellow);
  transform: translateX(4px);
}

.footer-news p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.footer-tag {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ============================================================
   PAGE ROOT / TRANSITIONS
   ============================================================ */
.page-root {
  min-height: 55vh;
}

.page-leaving {
  animation: pageOut 0.28s ease forwards;
}

.page-entering {
  animation: pageIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pageOut {
  to { opacity: 0; transform: translateY(-14px); }
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TOAST
   ============================================================ */
.toast-wrap {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 330px;
}

.toast {
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 5px 5px 0 var(--red);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.toast.is-show {
  transform: translateX(0);
  opacity: 1;
}

.toast b {
  font-family: var(--font-head);
  font-size: 0.95rem;
}

.toast small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .featured-grid,
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .concept-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .note-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-illustration {
    min-height: 400px;
  }

  .about-story-inner,
  .quality-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-visual {
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 2px solid var(--ink);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 99;
    box-shadow: 0 16px 30px rgba(9, 7, 24, 0.1);
  }

  body.nav-open .main-nav {
    transform: translateY(0);
  }

  .nav-link {
    padding: 12px 14px;
    font-size: 1rem;
  }

  .nav-link.is-active::after {
    display: none;
  }

  .nav-burger {
    display: grid;
  }

  .steps-grid,
  .t-grid,
  .value-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .builder-layout {
    grid-template-columns: 1fr;
  }

  .builder-right {
    position: static;
    margin-top: 8px;
  }

  .store-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-news {
    grid-column: 1 / -1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-floats .fc-1,
  .hero-floats .fc-3 {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 66px;
  }

  .container {
    padding: 0 16px;
  }

  .logo-text small {
    display: none;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .featured-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .concept-grid,
  .note-grid {
    grid-template-columns: 1fr;
  }

  .steps-banner {
    padding: 30px 20px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .steps-grid {
    gap: 16px;
  }

  .step-card {
    padding: 20px;
  }

  .hero {
    padding: 36px 0 50px;
  }

  .hero-img {
    height: 320px;
    transform: rotate(0deg);
    box-shadow: 8px 8px 0 var(--red);
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-illustration {
    min-height: 360px;
  }

  .hero-bottles {
    width: 200px;
    height: 370px;
  }

  .hb {
    width: 90px;
  }

  .hb-2 {
    height: 150px;
  }

  .float-card {
    padding: 8px 10px;
  }

  .float-card b {
    font-size: 0.8rem;
  }

  .float-card small {
    font-size: 0.6rem;
  }

  .fc-2 { top: 4%; right: -2%; }
  .fc-4 { bottom: 4%; right: 0; }

  .hi-bubble {
    top: 0;
    right: 0;
    font-size: 0.8rem;
    padding: 10px 14px;
  }

  .page-hero {
    padding: 50px 0 60px;
  }

  .page-hero-title {
    font-size: 2.2rem;
  }

  .page-hero-about-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .page-hero-about-inner .page-hero-copy {
    text-align: center;
  }

  .page-hero-about-inner .page-hero-title {
    text-align: center;
  }

  .page-hero-about-inner .page-hero-sub {
    text-align: center;
    margin: 0 auto;
  }

  .page-hero-about .page-hero-img {
    height: 300px;
    transform: rotate(0deg);
    box-shadow: 8px 8px 0 var(--red);
  }

  .page-hero-product-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .page-hero-product-inner .page-hero-copy {
    text-align: center;
  }

  .page-hero-product-inner .page-hero-title {
    text-align: center;
  }

  .page-hero-product-inner .page-hero-sub {
    text-align: center;
    margin: 0 auto;
  }

  .page-hero-product-inner .page-hero-ctas {
    justify-content: center;
  }

  .page-hero-product .page-hero-img {
    height: 300px;
    transform: rotate(0deg);
    box-shadow: 8px 8px 0 var(--yellow);
  }

  .page-hero-contact .page-hero-img {
    opacity: 0.3;
  }

  .story-visual {
    min-height: 300px;
  }

  .sv-frame {
    width: 250px;
    height: 330px;
  }

  .stats-grid {
    gap: 12px;
  }

  .stat-card b {
    font-size: 1.8rem;
  }

  .quality-visual {
    min-height: 300px;
  }

  .qv-bottle {
    width: 60px;
    height: 150px;
  }

  .qv-1 { height: 120px; }
  .qv-2 { height: 165px; }
  .qv-3 { height: 140px; }

  .builder-section {
    padding: 60px 0;
  }

  .step-list {
    grid-template-columns: 1fr;
  }

  .builder-step {
    padding: 10px 14px;
  }

  .bs-info small {
    max-width: none;
  }

  .builder-card {
    padding: 20px;
  }

  .note-chip {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 10px;
  }

  .note-emoji {
    margin-bottom: 0;
    font-size: 1.5rem;
  }

  .note-short {
    margin-top: 0;
  }

  .step-ctas {
    flex-direction: column-reverse;
  }

  .step-ctas .btn {
    width: 100%;
  }

  .preview-panel {
    padding: 20px;
  }

  .community-inner {
    flex-direction: column;
    text-align: center;
  }

  .community-inner .btn {
    margin-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .toast-wrap {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}