/* ============================================================
   Hi Venus Purbalingga — style.css
   Modern Asymmetric Fashion Landing Page
   Palette: White · Cream/Off-White · Warm Brown/Mocha
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --white: #ffffff;
  --cream: #f8f4ee;
  --cream-mid: #f0e9de;
  --cream-dark: #e5d9c8;
  --brown-light: #c4a882;
  --brown: #8b6445;
  --brown-dark: #5c3d1e;
  --mocha: #3d2510;
  --text: #2c1a0e;
  --text-muted: #7a5c42;
  --wa-green: #25d366;
  --ig-grad: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "DM Sans", "Helvetica Neue", sans-serif;

  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --radius-xl: 64px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 12px rgba(91, 57, 30, 0.08);
  --shadow-md: 0 8px 32px rgba(91, 57, 30, 0.12);
  --shadow-lg: 0 20px 60px rgba(91, 57, 30, 0.18);

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 72px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 {
  transition-delay: 0.15s;
}
.reveal--delay-2 {
  transition-delay: 0.3s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-full);
  padding: 13px 30px;
}
.btn--primary {
  background: var(--brown-dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(92, 61, 30, 0.3);
}
.btn--primary:hover {
  background: var(--mocha);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(61, 37, 16, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--brown-dark);
  border: 1.5px solid var(--brown-dark);
}
.btn--outline:hover {
  background: var(--brown-dark);
  color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--cream-dark);
}
.btn--ghost:hover {
  background: var(--cream);
  border-color: var(--brown-light);
}
.btn--xs {
  padding: 6px 16px;
  font-size: 0.8rem;
  border-radius: var(--radius-full);
}
.btn--wa {
  background: #e8f8ef;
  color: #1a7a40;
  border: 1px solid #a8dfc0;
}
.btn--wa:hover {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn--ig {
  background: #fef0f5;
  color: #9b2c6c;
  border: 1px solid #f0c0d8;
}
.btn--ig:hover {
  background: #dc2743;
  color: var(--white);
  border-color: #dc2743;
}

.btn--wa-lg {
  padding: 16px 36px;
  background: var(--wa-green);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  flex-direction: row;
  gap: 10px;
}
.btn--wa-lg:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
}
.btn--ig-lg {
  padding: 16px 36px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 24px rgba(220, 39, 67, 0.3);
  flex-direction: row;
  gap: 10px;
}
.btn--ig-lg:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn--shopee {
  padding: 18px 48px;
  background: linear-gradient(135deg, #ee4d2d, #ff6b35);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 30px rgba(238, 77, 45, 0.35);
  flex-direction: column;
  gap: 2px;
  text-align: center;
}
.btn--shopee span {
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0.9;
}
.btn--shopee strong {
  font-size: 1rem;
}
.btn--shopee svg {
  display: none;
}
.btn--shopee:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(238, 77, 45, 0.45);
  filter: brightness(1.06);
}

/* ── Section Headers ── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--mocha);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--brown);
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196, 168, 130, 0.15);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(91, 57, 30, 0.1);
  background: rgba(255, 255, 255, 0.97);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar__logo img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.navbar__logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--mocha);
  letter-spacing: 0.01em;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.25s;
}
.navbar__nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--brown);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.navbar__nav a:hover {
  color: var(--brown-dark);
}
.navbar__nav a:hover::after {
  transform: scaleX(1);
}
.navbar__cta {
  flex-shrink: 0;
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--mocha);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__bg-circle--1 {
  width: 700px;
  height: 700px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle at 60% 40%, #f8f0e2 0%, transparent 70%);
}
.hero__bg-circle--2 {
  width: 400px;
  height: 400px;
  left: -100px;
  bottom: 0;
  background: radial-gradient(circle, #f0e6d4 0%, transparent 70%);
}
.hero__star {
  position: absolute;
  color: var(--brown-light);
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}
.hero__star--1 {
  font-size: 1.4rem;
  top: 22%;
  left: 6%;
  animation-delay: 0s;
}
.hero__star--2 {
  font-size: 0.9rem;
  top: 70%;
  left: 42%;
  animation-delay: 1.5s;
}
.hero__star--3 {
  font-size: 1.1rem;
  bottom: 18%;
  right: 8%;
  animation-delay: 0.8s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero__text {
  padding-right: 24px;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--brown-light);
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--mocha);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero__headline em {
  font-style: italic;
  color: var(--brown);
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__badges {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero__badge {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.hero__badge span {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.1;
}
.hero__divider {
  width: 1px;
  height: 36px;
  background: var(--cream-dark);
}

/* Hero Visual */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__frame {
  position: relative;
  width: 420px;
  height: 520px;
  flex-shrink: 0;
}
.hero__frame-ring {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  border: 1.5px solid;
  pointer-events: none;
}
.hero__frame-ring--outer {
  inset: -28px;
  border-color: var(--cream-dark);
  animation: morph 8s ease-in-out infinite;
}
.hero__frame-ring--inner {
  inset: -10px;
  border-color: rgba(196, 168, 130, 0.4);
  animation: morph 8s ease-in-out infinite reverse;
  animation-delay: 0.5s;
}
@keyframes morph {
  0%,
  100% {
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  }
  25% {
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
  }
  50% {
    border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%;
  }
  75% {
    border-radius: 65% 35% 55% 45% / 45% 55% 45% 55%;
  }
}
.hero__image-wrap {
  width: 100%;
  height: 100%;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  overflow: hidden;
  animation: morph 8s ease-in-out infinite;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.hero__image-wrap:hover .hero__img {
  transform: scale(1.04);
}

.hero__tag {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brown-dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.hero__tag--top {
  top: 20px;
  right: -30px;
}
.hero__tag--bottom {
  bottom: 40px;
  left: -30px;
}

.hero__line-deco {
  position: absolute;
  background: var(--cream-dark);
  pointer-events: none;
}
.hero__line-deco--h {
  width: 80px;
  height: 1px;
  right: -60px;
  top: 50%;
}
.hero__line-deco--v {
  width: 1px;
  height: 60px;
  left: -40px;
  top: 30%;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-light);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--brown-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
}

/* ── Ticker ── */
.ticker {
  background: var(--mocha);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  gap: 48px;
  animation: ticker 24s linear infinite;
}
.ticker__track span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.7);
  flex-shrink: 0;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── Collections ── */
.collections {
  background: var(--cream);
}
.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card--featured {
  grid-row: span 1;
}
.card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card__img-wrap img {
  transform: scale(1.06);
}
.card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(61, 37, 16, 0.45) 0%,
    transparent 50%
  );
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.35s;
}
.card:hover .card__overlay {
  opacity: 1;
}
.card__category {
  background: rgba(255, 255, 255, 0.9);
  color: var(--brown-dark);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--mocha);
  color: var(--white);
}
.card__badge--hot {
  background: #c53030;
}
.card__badge--sale {
  background: var(--brown);
}

.card__body {
  padding: 20px;
}
.card__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--mocha);
  margin-bottom: 6px;
}
.card__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.collections__footer {
  text-align: center;
  border-top: 1px solid var(--cream-dark);
  padding-top: 40px;
}
.collections__footer p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ── Brands ── */
.brands {
  background: var(--white);
}
.brands__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.brands__visual {
  position: relative;
}
.brands__img-frame {
  position: relative;
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.brands__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brands__img-accent {
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  border: 1.5px solid var(--cream-dark);
  pointer-events: none;
}

.brands__stat {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 110px;
}
.brands__stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.brands__stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.brands__stat--1 {
  top: 10%;
  right: -20px;
}
.brands__stat--2 {
  bottom: 14%;
  left: -20px;
}

.brands__text {
  padding-left: 12px;
}
.brands__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.brands__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.brands__features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.brands__feature-icon {
  width: 36px;
  height: 36px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.brands__features strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mocha);
  margin-bottom: 4px;
}
.brands__features p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── Contact ── */
.contact {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact__bg-deco {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -100px;
  bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 168, 130, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.contact__star {
  position: absolute;
  top: 48px;
  right: 10%;
  font-size: 1.5rem;
  color: var(--brown-light);
  opacity: 0.5;
  animation: float 5s ease-in-out infinite;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact__desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.75;
}
.contact__sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.contact__cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.contact__card-inner {
  padding: 36px;
}
.contact__icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  margin-bottom: 20px;
}
.contact__card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--mocha);
  margin-bottom: 12px;
}
.contact__addr {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.contact__hours {
  background: var(--cream);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.contact__hours-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 4px;
}
.contact__hours strong {
  font-size: 0.95rem;
  color: var(--brown-dark);
}
.contact__divider {
  height: 1px;
  background: var(--cream-dark);
  margin-bottom: 20px;
}
.contact__socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__socials a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.25s;
}
.contact__socials a:hover {
  color: var(--brown-dark);
}
.contact__socials span {
  font-size: 1rem;
}

/* ── Shopee ── */
.shopee {
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.shopee::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(248, 237, 220, 0.8) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.shopee__inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.shopee__deco {
  position: absolute;
  font-size: 1.2rem;
  color: var(--brown-light);
  opacity: 0.6;
}
.shopee__deco--1 {
  top: 0;
  left: -60px;
  animation: float 4.5s ease-in-out infinite;
}
.shopee__deco--2 {
  bottom: 0;
  right: -60px;
  animation: float 4.5s ease-in-out infinite 0.8s;
}
.shopee__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--mocha);
  margin-bottom: 20px;
  line-height: 1.2;
}
.shopee__title em {
  font-style: italic;
  color: var(--brown);
}
.shopee__desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}
.shopee__note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--brown-light);
}

/* ── Maps ── */
.maps {
  background: var(--cream);
}
.maps__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.maps__info {
  background: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.maps__info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.maps__info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 32px;
  text-align: center;
}
.maps__info-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mocha);
  margin-bottom: 4px;
}
.maps__info-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.maps__btn {
  margin-top: auto;
  align-self: flex-start;
}
.maps__frame {
  min-height: 400px;
  background: var(--cream-mid);
}
.maps__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ── Footer ── */
.footer {
  background: var(--mocha);
  color: rgba(248, 244, 238, 0.8);
}
.footer__top {
  padding: 72px 0 48px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer__brand {
}
.footer__logo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  margin-bottom: 16px;
}
.footer__logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  display: block;
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(248, 244, 238, 0.6);
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer__social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(248, 244, 238, 0.7);
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--brown-light);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: 0.88rem;
  color: rgba(248, 244, 238, 0.6);
  transition: color 0.25s;
}
.footer__col a:hover {
  color: var(--brown-light);
}
.footer__hours {
  font-size: 0.88rem;
  color: rgba(248, 244, 238, 0.6);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer__hours strong {
  color: var(--cream);
}
.footer__addr-short {
  font-size: 0.82rem;
  color: rgba(248, 244, 238, 0.5);
  line-height: 1.6;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: center;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(248, 244, 238, 0.4);
}

/* ── Floating WA ── */
.fab-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}
.fab-wa:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
.fab-wa::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.4;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet (≤900px) */
@media (max-width: 900px) {
  .section {
    padding: 72px 0;
  }

  /* Navbar */
  .navbar__nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--cream-dark);
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.4s ease,
      padding 0.4s ease;
    box-shadow: var(--shadow-md);
  }
  .navbar__nav.open {
    max-height: 320px;
    padding: 12px 0;
  }
  .navbar__nav a {
    padding: 14px 28px;
    width: 100%;
    border-bottom: 1px solid var(--cream);
  }
  .navbar__cta {
    display: none;
  }
  .navbar__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 64px;
    text-align: center;
  }
  .hero__text {
    padding-right: 0;
    order: 2;
  }
  .hero__eyebrow {
    justify-content: center;
  }
  .hero__sub {
    margin: 0 auto 40px;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__badges {
    justify-content: center;
  }
  .hero__visual {
    order: 1;
  }
  .hero__frame {
    width: 300px;
    height: 370px;
  }
  .hero__tag--top {
    right: -10px;
  }
  .hero__tag--bottom {
    left: -10px;
  }

  /* Collections */
  .collections__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Brands */
  .brands__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .brands__text {
    padding-left: 0;
  }
  .brands__img-frame {
    max-width: 360px;
    margin: 0 auto;
  }
  .brands__stat--1 {
    right: 0;
  }
  .brands__stat--2 {
    left: 0;
  }

  /* Contact */
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Maps */
  .maps__inner {
    grid-template-columns: 1fr;
  }
  .maps__frame,
  .maps__frame iframe {
    min-height: 300px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .section {
    padding: 56px 0;
  }
  .container {
    padding: 0 18px;
  }

  .hero__frame {
    width: 240px;
    height: 300px;
  }
  .hero__headline {
    font-size: 2.4rem;
  }
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .collections__grid {
    grid-template-columns: 1fr;
  }

  .contact__cta-group {
    flex-direction: column;
  }
  .btn--wa-lg,
  .btn--ig-lg {
    width: 100%;
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .maps__info {
    padding: 24px;
  }
  .contact__card-inner {
    padding: 24px;
  }

  .hero__scroll-hint {
    display: none;
  }
}

/* Small Mobile (≤380px) */
@media (max-width: 380px) {
  .hero__headline {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .hero__badges {
    flex-direction: column;
    gap: 10px;
  }
  .hero__divider {
    width: 48px;
    height: 1px;
  }
}
