:root {
  --coffee-1: #1a120f;
  --coffee-2: #2a1b16;
  --coffee-3: #3b241d;
  --coffee-4: #5d4033;
  --latte: #e9ddd3;
  --cream: #f8f2ec;
  --gold: #d2a45e;
  --gold-soft: #f0d6ab;
  --text: #f7f1eb;
  --muted: rgba(255,255,255,0.72);
  --card: rgba(255,255,255,0.07);
  --card-border: rgba(255,255,255,0.10);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  --shadow-heavy: 0 28px 70px rgba(0, 0, 0, 0.38);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(210,164,94,0.08), transparent 20%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.04), transparent 20%),
    linear-gradient(180deg, #120c0a 0%, #231712 28%, #3b241d 62%, #2a1b16 100%);
  min-height: 100vh;
  position: relative;
}

img {
  width: 100%;
  display: block;
}

/* PARTICLES */
.snow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.snow span {
  position: absolute;
  top: -10%;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow:
    0 0 6px rgba(255,255,255,0.95),
    0 0 14px rgba(255,255,255,0.55);
  animation: snowfall linear infinite;
  opacity: 0.95;
}

.snow span:nth-child(1)  { left: 4%;  animation-duration: 10s; animation-delay: 0s;   width: 4px;  height: 4px; }
.snow span:nth-child(2)  { left: 10%; animation-duration: 13s; animation-delay: 1s;   width: 6px;  height: 6px; }
.snow span:nth-child(3)  { left: 16%; animation-duration: 11s; animation-delay: 2s;   width: 5px;  height: 5px; }
.snow span:nth-child(4)  { left: 22%; animation-duration: 14s; animation-delay: 0.5s; width: 7px;  height: 7px; }
.snow span:nth-child(5)  { left: 29%; animation-duration: 12s; animation-delay: 1.5s; width: 5px;  height: 5px; }
.snow span:nth-child(6)  { left: 36%; animation-duration: 15s; animation-delay: 2.5s; width: 6px;  height: 6px; }
.snow span:nth-child(7)  { left: 43%; animation-duration: 11s; animation-delay: 0.7s; width: 4px;  height: 4px; }
.snow span:nth-child(8)  { left: 51%; animation-duration: 14s; animation-delay: 1.7s; width: 6px;  height: 6px; }
.snow span:nth-child(9)  { left: 58%; animation-duration: 10s; animation-delay: 2.4s; width: 5px;  height: 5px; }
.snow span:nth-child(10) { left: 65%; animation-duration: 13s; animation-delay: 1.1s; width: 6px;  height: 6px; }
.snow span:nth-child(11) { left: 72%; animation-duration: 12s; animation-delay: 0.4s; width: 5px;  height: 5px; }
.snow span:nth-child(12) { left: 78%; animation-duration: 16s; animation-delay: 2.2s; width: 7px;  height: 7px; }
.snow span:nth-child(13) { left: 84%; animation-duration: 11s; animation-delay: 0.8s; width: 4px;  height: 4px; }
.snow span:nth-child(14) { left: 89%; animation-duration: 14s; animation-delay: 1.6s; width: 6px;  height: 6px; }
.snow span:nth-child(15) { left: 94%; animation-duration: 15s; animation-delay: 2.8s; width: 5px;  height: 5px; }
.snow span:nth-child(16) { left: 8%;  animation-duration: 17s; animation-delay: 3s;   width: 3px;  height: 3px; }
.snow span:nth-child(17) { left: 33%; animation-duration: 16s; animation-delay: 3.4s; width: 4px;  height: 4px; }
.snow span:nth-child(18) { left: 55%; animation-duration: 18s; animation-delay: 3.8s; width: 3px;  height: 3px; }
.snow span:nth-child(19) { left: 74%; animation-duration: 17s; animation-delay: 4.2s; width: 4px;  height: 4px; }
.snow span:nth-child(20) { left: 92%; animation-duration: 19s; animation-delay: 4.6s; width: 3px;  height: 3px; }

@keyframes snowfall {
  0% {
    transform: translateY(-12vh) translateX(0) scale(0.9);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) translateX(30px) scale(1.05);
    opacity: 0.25;
  }
}

/* BLOBS */
body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

body::before {
  width: 280px;
  height: 280px;
  left: -60px;
  top: 120px;
  background: rgba(210,164,94,0.12);
}

body::after {
  width: 340px;
  height: 340px;
  right: -90px;
  bottom: 80px;
  background: rgba(255,255,255,0.05);
}

/* NAVBAR */
.topbar {
  width: min(1200px, calc(100% - 32px));
  margin: 18px auto;
  padding: 14px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 16px;
  z-index: 50;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--coffee-3), var(--coffee-4));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
}

.brand-tag {
  font-size: 0.78rem;
  opacity: 0.72;
}

#nav-toggle {
  display: none;
}

.hamburger {
  display: none;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.navbar a {
  text-decoration: none;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  background: rgba(255,255,255,0.14);
  color: #fff;
  transform: translateY(-2px);
}

/* PAGE */
.contact-page {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.section-title p {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.section-title.left {
  text-align: left;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

/* HERO */
.contact-hero {
  position: relative;
  padding: 64px 28px 50px;
  text-align: center;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, #1a120f, #2f1f19 55%, #3d281f);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-heavy);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(210,164,94,0.12), transparent 24%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.06), transparent 22%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.28;
}

.hero-glow-1 {
  width: 220px;
  height: 220px;
  background: rgba(210,164,94,0.18);
  top: 20px;
  left: 40px;
}

.hero-glow-2 {
  width: 240px;
  height: 240px;
  background: rgba(255,255,255,0.08);
  bottom: 20px;
  right: 30px;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.contact-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  margin-bottom: 16px;
}

.contact-hero p {
  color: var(--muted);
  line-height: 1.9;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badges {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}

/* INFO GRID */
.contact-info-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), transparent 38%, transparent 75%, rgba(210,164,94,0.08));
  opacity: 0;
  transition: 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.36);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(210,164,94,0.25), rgba(255,255,255,0.08));
  margin-bottom: 16px;
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.8;
}

/* MAIN LAYOUT */
.contact-main-layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.contact-left,
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.contact-panel {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), transparent 35%, transparent 75%, rgba(210,164,94,0.08));
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.contact-panel:hover {
  transform: translateY(-6px);
}

.contact-panel:hover::before {
  opacity: 1;
}

/* FORM */
.contact-form {
  margin-top: 10px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--gold-soft);
}

.input-group input,
.input-group textarea {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.08);
  color: white;
  outline: none;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: rgba(210,164,94,0.5);
  box-shadow: 0 0 0 3px rgba(210,164,94,0.12);
}

.send-btn {
  margin-top: 8px;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #e4bf86);
  color: #2b1d18;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s ease;
}

.send-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(210,164,94,0.22);
}

/* SIDE PANELS */
.reason-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reason-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
}

.reason-item span {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(210,164,94,0.18);
  color: var(--gold-soft);
  font-weight: 700;
}

.reason-item h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.reason-item p {
  color: var(--muted);
  line-height: 1.8;
}

.social-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.social-box {
  text-decoration: none;
  color: white;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  text-align: center;
  transition: 0.35s ease;
  border: 1px solid rgba(255,255,255,0.06);
}

.social-box:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.14);
}

/* BOTTOM */
.contact-bottom-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.panel-map p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

.fake-map {
  min-height: 220px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(210,164,94,0.08));
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--gold-soft);
  font-weight: 600;
  letter-spacing: 1px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hours-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.hours-item span {
  color: var(--muted);
}

.hours-item strong {
  color: var(--gold-soft);
}

/* FOOTER */
.footer {
  width: min(1200px, calc(100% - 32px));
  margin: 24px auto;
  padding: 22px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-main-layout,
  .contact-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 99px;
  }

  .navbar {
    width: 100%;
    display: none;
    flex-direction: column;
  }

  #nav-toggle:checked ~ .navbar {
    display: flex;
  }

  .input-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-info-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero,
  .contact-panel {
    padding: 24px 20px;
  }

  .contact-hero h2,
  .section-title h2 {
    font-size: 2rem;
  }

  .hours-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* bikin kanan tetap tinggi & balance */
.contact-right {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.panel-side {
  height: 100%;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-socials a {
  text-decoration: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.16);
}