:root {
  --bg: #0b0f0d;
  --bg-soft: #121915;
  --card: rgba(18, 27, 22, 0.72);
  --text: #f6f0df;
  --muted: #c9c0aa;
  --line: rgba(214, 182, 96, 0.18);
  --gold: #d8b96b;
  --gold-soft: #f1dfaf;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --container: 1180px;
  --radius: 24px;
  --radius-sm: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(36, 82, 58, 0.28), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(216, 185, 107, 0.08), transparent 22%),
    linear-gradient(180deg, #09100d 0%, #0c110f 100%);
  color: var(--text);
  line-height: 1.65;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

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

.site-header {
    padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(8, 12, 10, 0.68);
  border-bottom: 1px solid rgba(216, 185, 107, 0.08);
}

.nav {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-wrap {
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: 20px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #244536, #0f1d17);
  border: 1px solid rgba(216, 185, 107, 0.2);
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-kicker,
.section-tag,
.eyebrow {
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.73rem;
  color: var(--gold);
}

.brand-name {
  margin-top: 2px;
  font-size: 1.1rem;
  font-weight: 600;
}

.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(216, 185, 107, 0.16);
  color: var(--muted);
}

.hero, .intro, .products, .occasion, .values, .closing {
  padding: 88px 0;
}

.hero-grid,
.intro-grid,
.occasion-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.closing-card h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero-text,
.section-copy p,
.closing-card p,
.product-body p,
.value-card p,
.feature-item p,
.quote-line {
  color: var(--muted);
}

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

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(23, 50, 37, 0.56);
  border: 1px solid rgba(216, 185, 107, 0.14);
  color: var(--gold-soft);
  font-size: 0.92rem;
}

.frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 25, 21, 0.95), rgba(10, 14, 12, 0.95));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card img,
.occasion-visual img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.quote-card {
  min-height: 100%;
  display: flex;
  align-items: center;
  padding: 34px;
}

.quote-line {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
  line-height: 1.2;
  color: var(--gold-soft);
}

.center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 34px;
}

.product-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-body,
.value-card,
.closing-card {
  padding: 24px;
}

.product-body h3,
.value-card h3,
.feature-item h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  color: var(--gold-soft);
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-item {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(18, 27, 22, 0.54);
  border: 1px solid rgba(216, 185, 107, 0.12);
}

.value-card {
  border-radius: var(--radius);
  background: rgba(18, 27, 22, 0.6);
  border: 1px solid rgba(216, 185, 107, 0.12);
}

.closing-card {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 42px 28px;
}

.site-footer {
  padding: 22px 0 34px;
  border-top: 1px solid rgba(216, 185, 107, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #a79d86;
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .occasion-grid,
  .product-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero, .intro, .products, .occasion, .values, .closing {
    padding: 72px 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 22px)); }
  .nav { min-height: 70px; }
  .brand-name { font-size: 1rem; }
  .hero h1, .section-copy h2, .section-heading h2, .closing-card h2 { line-height: 1.05; }
  .product-body, .value-card, .closing-card, .quote-card { padding: 20px; }
  .hero-badges span { width: 100%; text-align: center; }
}

.trust {
  padding: 88px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.trust-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 28, 22, 0.96), rgba(9, 14, 11, 0.98));
  border: 1px solid rgba(201, 162, 79, 0.16);
  box-shadow: var(--shadow);
}

.trust-text {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.trust-name {
  color: var(--gold-soft);
  font-weight: 600;
}

.social-proof {
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(17, 28, 22, 0.96), rgba(9, 14, 11, 0.98));
  border: 1px solid rgba(201, 162, 79, 0.16);
  box-shadow: var(--shadow);
}

.social-proof h3 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--gold-soft);
}

.social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.social-list a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 79, 0.18);
  background: rgba(19, 41, 32, 0.68);
  color: var(--gold-soft);
}

.social-list a:hover {
  color: var(--text);
  border-color: rgba(201, 162, 79, 0.34);
}

@media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.since {
  color: #d4af37;
  font-weight: 639;
  letter-spacing: 3px;
}

.cta {
  padding:80px 20px;
  text-align:center;
}

.cta-box {
  background:#0f2a1e;
  border:2px solid #d4af37;
  padding:33px;
  max-width:500px;
  margin:auto;
}

.cta input {
  width:70%;
  padding:12px;
  margin-top:18px;
  border:none;
}

.cta button {
  padding:12px 18px;
  background:#d4af37;
  border:none;
  cursor:pointer;
  margin-left:10px;
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;

  width: 120px;
  height: 120px;

  border-radius: 50%;
  overflow: hidden;

  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  animation: pulse 3s infinite;
}

.floating-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.auth {
  display:flex;
  gap:15px;
  margin-left: auto;
  padding-left: 20px; /* ← ini yang bikin jarak dari brand */
  margin-right: 30px;
}

.auth button {
    font-size: 13px;
  padding:10px 18px;
  border:1px solid #d4af37;
  background:transparent;
  color:#d4af37;
  cursor:pointer;
}

/* MODAL */
.modal {
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  justify-content:center;
  align-items:center;
}

.modal-content {
  background:#0f2a1e;
  padding:30px;
  border:1px solid #d4af37;
  width:300px;
}

.modal input {
  width:100%;
  margin-top:10px;
  padding:10px;
}

.modal button {
  width:100%;
  margin-top:15px;
  padding:10px;
  background:#d4af37;
  border:none;
}

.close {
  float:right;
  cursor:pointer;
}

.auth button {
  padding:8px 16px;
  border-radius:999px;
  border:1px solid #d4af37;
  background:transparent;
  color:#d4af37;
  cursor:pointer;
  transition:0.3s;
}

.auth button:hover {
  background:#d4af37;
  color:#000;
}

.floating-discount {
  position: fixed;
  bottom: 150px; /* di atas icon WA */
  right: 20px;
  z-index: 999;
  
  width: 120px;
  height: 120px;
  
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  
  animation: pulse 3s infinite;
  
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.floating-discount img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-discount:hover {
  transform: scale(1.0);
}