:root {
  --coffee-1: #1a120f;
  --coffee-2: #2a1b16;
  --coffee-3: #3b241d;
  --coffee-4: #5d4033;
  --latte: #eaded3;
  --cream: #faf5ef;
  --gold: #d2a45e;
  --gold-soft: #f1d6aa;
  --text: #f7f1eb;
  --muted: rgba(255,255,255,0.74);
  --dark-text: #2b1d18;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.26);
  --shadow-heavy: 0 28px 70px rgba(0, 0, 0, 0.34);
}

* {
  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(0,0,0,0.08), transparent 18%),
    linear-gradient(180deg, #130d0b 0%, #241712 28%, #3b241d 62%, #2a1b16 100%);
  min-height: 100vh;
  position: relative;
}

img {
  width: 100%;
  display: block;
}

/* BLACK STARS */
.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.stars span {
  position: absolute;
  top: -10%;
  border-radius: 50%;
  background: rgba(8, 10, 18, 0.85);
  box-shadow:
    0 0 4px rgba(8, 10, 18, 0.65),
    0 0 10px rgba(18, 22, 38, 0.32);
  animation: starMove linear infinite;
  opacity: 0.95;
}

.stars span:nth-child(1)  { left: 4%;  animation-duration: 11s; animation-delay: 0s;   width: 5px; height: 5px; }
.stars span:nth-child(2)  { left: 10%; animation-duration: 14s; animation-delay: 1s;   width: 7px; height: 7px; }
.stars span:nth-child(3)  { left: 16%; animation-duration: 12s; animation-delay: 2s;   width: 5px; height: 5px; }
.stars span:nth-child(4)  { left: 22%; animation-duration: 15s; animation-delay: 0.5s; width: 8px; height: 8px; }
.stars span:nth-child(5)  { left: 29%; animation-duration: 13s; animation-delay: 1.5s; width: 6px; height: 6px; }
.stars span:nth-child(6)  { left: 36%; animation-duration: 16s; animation-delay: 2.5s; width: 6px; height: 6px; }
.stars span:nth-child(7)  { left: 43%; animation-duration: 12s; animation-delay: 0.7s; width: 5px; height: 5px; }
.stars span:nth-child(8)  { left: 51%; animation-duration: 15s; animation-delay: 1.7s; width: 7px; height: 7px; }
.stars span:nth-child(9)  { left: 58%; animation-duration: 11s; animation-delay: 2.4s; width: 5px; height: 5px; }
.stars span:nth-child(10) { left: 65%; animation-duration: 14s; animation-delay: 1.1s; width: 6px; height: 6px; }
.stars span:nth-child(11) { left: 72%; animation-duration: 13s; animation-delay: 0.4s; width: 5px; height: 5px; }
.stars span:nth-child(12) { left: 78%; animation-duration: 17s; animation-delay: 2.2s; width: 8px; height: 8px; }
.stars span:nth-child(13) { left: 84%; animation-duration: 12s; animation-delay: 0.8s; width: 4px; height: 4px; }
.stars span:nth-child(14) { left: 89%; animation-duration: 15s; animation-delay: 1.6s; width: 6px; height: 6px; }
.stars span:nth-child(15) { left: 94%; animation-duration: 16s; animation-delay: 2.8s; width: 5px; height: 5px; }
.stars span:nth-child(16) { left: 8%;  animation-duration: 18s; animation-delay: 3s;   width: 4px; height: 4px; }
.stars span:nth-child(17) { left: 33%; animation-duration: 17s; animation-delay: 3.4s; width: 5px; height: 5px; }
.stars span:nth-child(18) { left: 55%; animation-duration: 19s; animation-delay: 3.8s; width: 4px; height: 4px; }
.stars span:nth-child(19) { left: 74%; animation-duration: 18s; animation-delay: 4.2s; width: 5px; height: 5px; }
.stars span:nth-child(20) { left: 92%; animation-duration: 20s; animation-delay: 4.6s; width: 4px; height: 4px; }

@keyframes starMove {
  0% {
    transform: translateY(-12vh) translateX(0) scale(0.9);
    opacity: 0;
  }
  10% {
    opacity: 0.95;
  }
  100% {
    transform: translateY(110vh) translateX(24px) scale(1.02);
    opacity: 0.18;
  }
}

.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);
}


.about-page {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.section-title {
  margin-bottom: 24px;
}

.section-title.left {
  text-align: left;
}

.section-title p {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}


.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 82vh;
  margin-top: 8px;
  border-radius: 34px;
  display: grid;
  place-items: center;
  padding: 56px 28px;
  text-align: center;
  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);
}

.about-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(0,0,0,0.12), transparent 22%);
}

.about-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.22;
  animation: floatGlow 7s ease-in-out infinite;
}

.glow-1 {
  width: 220px;
  height: 220px;
  background: rgba(210,164,94,0.18);
  top: 30px;
  left: 30px;
}

.glow-2 {
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.06);
  bottom: 20px;
  right: 40px;
  animation-delay: 1s;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.about-hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1.04;
  margin-bottom: 18px;
}

.about-hero-content p {
  color: var(--muted);
  line-height: 1.9;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badges {
  margin-top: 20px;
  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;
}


.about-story {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.about-story-image,
.about-story-text,
.value-card,
.experience-panel,
.highlight-box,
.about-cta {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.about-story-image {
  overflow: hidden;
  border-radius: 30px;
}

.about-story-image img {
  min-height: 520px;
  object-fit: cover;
  transition: 0.5s ease;
}

.about-story-image:hover img {
  transform: scale(1.05);
}

.about-story-text {
  padding: 34px;
  border-radius: 30px;
}

.about-story-text p {
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 16px;
}

 
.about-values {
  margin-top: 30px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  padding: 28px;
  border-radius: 28px;
  transition: 0.35s ease;
}

.value-card:hover,
.experience-panel:hover,
.highlight-box:hover,
.about-cta:hover {
  transform: translateY(-8px);
}

.value-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;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--muted);
  line-height: 1.85;
}


.about-experience {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.experience-panel {
  padding: 30px;
  border-radius: 28px;
  transition: 0.35s ease;
}

.panel-mini {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.experience-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.experience-panel p {
  color: var(--muted);
  line-height: 1.9;
}


.about-highlight {
  margin-top: 30px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.highlight-box {
  padding: 26px;
  border-radius: 24px;
  text-align: center;
  transition: 0.35s ease;
}

.highlight-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold-soft);
  margin-bottom: 10px;
}

.highlight-box p {
  color: var(--muted);
  line-height: 1.8;
}


.about-cta {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 56px 28px;
  text-align: center;
}

.about-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(210,164,94,0.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08));
}

.about-cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.cta-mini {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.about-cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 14px;
}

.about-cta-content p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 22px;
}

.cta-btn {
  display: inline-flex;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #e4bf86);
  color: var(--dark-text);
  font-weight: 700;
  transition: 0.35s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(210,164,94,0.22);
}


.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;
}


.card-animate {
  animation: fadeUp 1s ease both;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGlow {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-16px) scale(1.04);
  }
}


@media (max-width: 1000px) {
  .values-grid,
  .highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-story,
  .about-experience {
    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;
  }

  .about-hero,
  .about-story-text,
  .value-card,
  .experience-panel,
  .about-cta {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 600px) {
  .values-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-content h2,
  .section-title h2,
  .about-cta-content h2 {
    font-size: 2rem;
  }

  .about-story-image img {
    min-height: 320px;
  }
}


.music-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ambient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
  animation: floatAmbient 12s ease-in-out infinite;
}

.ambient-1 {
  width: 280px;
  height: 280px;
  top: 8%;
  left: -60px;
  background: radial-gradient(circle, rgba(255, 194, 122, 0.8), rgba(255, 194, 122, 0));
}

.ambient-2 {
  width: 340px;
  height: 340px;
  right: -80px;
  top: 30%;
  background: radial-gradient(circle, rgba(170, 120, 80, 0.65), rgba(170, 120, 80, 0));
  animation-delay: 2s;
}

.ambient-3 {
  width: 260px;
  height: 260px;
  left: 30%;
  bottom: -70px;
  background: radial-gradient(circle, rgba(255, 228, 196, 0.5), rgba(255, 228, 196, 0));
  animation-delay: 4s;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 35px 35px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
  opacity: 0.25;
}

@keyframes floatAmbient {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  50% {
    transform: translateY(-18px) translateX(12px) scale(1.06);
  }
}


.premium-music-player {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 330px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 9999;
  overflow: hidden;
}

.music-glow {
  position: absolute;
  inset: auto;
  width: 180px;
  height: 180px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 140, 0.26), transparent 70%);
  pointer-events: none;
}

.music-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.music-disc {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #f6d1a7, #8d5d38 55%, #3f2616 100%);
  box-shadow:
    inset 0 0 0 6px rgba(255,255,255,0.07),
    0 6px 18px rgba(0,0,0,0.28);
  position: relative;
  animation: spinDisc 10s linear infinite;
  animation-play-state: running;
}

.music-disc.paused {
  animation-play-state: paused;
}

.disc-center {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #f4e2cf;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.12);
}

@keyframes spinDisc {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.music-info {
  flex: 1;
  min-width: 0;
}

.music-info h4 {
  margin: 0;
  color: #fff5ea;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.music-info p {
  margin: 4px 0 0;
  color: rgba(255, 245, 234, 0.75);
  font-size: 12px;
  letter-spacing: 0.2px;
}

.music-main-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  background: linear-gradient(135deg, #9a6a46, #d2a173);
  box-shadow:
    0 8px 20px rgba(0,0,0,0.22),
    inset 0 1px 2px rgba(255,255,255,0.25);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.music-main-btn:hover {
  transform: scale(1.08);
  filter: brightness(1.06);
  box-shadow:
    0 10px 22px rgba(0,0,0,0.26),
    0 0 16px rgba(210, 161, 115, 0.35);
}

.music-middle {
  position: relative;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}


.eq-wrap {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 32px;
  min-width: 34px;
}

.eq-wrap span {
  display: block;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(to top, #eec08f, #fff1de);
  animation: eqMove 1s ease-in-out infinite;
  transform-origin: bottom;
}

.eq-wrap span:nth-child(1) { height: 10px; animation-delay: 0s; }
.eq-wrap span:nth-child(2) { height: 22px; animation-delay: 0.15s; }
.eq-wrap span:nth-child(3) { height: 16px; animation-delay: 0.3s; }
.eq-wrap span:nth-child(4) { height: 26px; animation-delay: 0.45s; }
.eq-wrap span:nth-child(5) { height: 13px; animation-delay: 0.6s; }

.eq-wrap.paused span {
  animation-play-state: paused;
  opacity: 0.5;
}

@keyframes eqMove {
  0%, 100% {
    transform: scaleY(0.65);
    opacity: 0.65;
  }
  50% {
    transform: scaleY(1.25);
    opacity: 1;
  }
}

.music-progress-area {
  flex: 1;
}

.music-status-text {
  color: rgba(255, 248, 240, 0.85);
  font-size: 12px;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.music-volume-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volume-label {
  color: rgba(255, 245, 234, 0.8);
  font-size: 12px;
  min-width: 45px;
}

#volumeSlider {
  flex: 1;
  height: 6px;
  cursor: pointer;
  accent-color: #d9a777;
  background: transparent;
}


.premium-music-player::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.03),
    rgba(255,215,170,0.16)
  );
  -webkitmask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}


.premium-music-player {
  animation: musicFloatIn 1s ease;
}

@keyframes musicFloatIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .premium-music-player {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    max-width: 340px;
    padding: 16px;
  }

  .music-info h4 {
    font-size: 15px;
  }

  .music-info p,
  .music-status-text,
  .volume-label {
    font-size: 11px;
  }

  .music-main-btn {
    width: 44px;
    height: 44px;
  }

  .music-disc {
    width: 52px;
    height: 52px;
  }
}