: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;
  }
}

/* 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 */
.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;
}

/* HERO */
.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;
}

/* STORY */
.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;
}

/* VALUES */
.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;
}

/* EXPERIENCE */
.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;
}

/* HIGHLIGHT */
.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;
}

/* CTA */
.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 */
.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;
}

/* ANIMATION */
.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);
  }
}

/* RESPONSIVE */
@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;
  }
}