/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0D0D0F;
  --bg-2: #141418;
  --fg: #F5F0E8;
  --fg-2: rgba(245, 240, 232, 0.6);
  --accent: #E8A838;
  --accent-dim: rgba(232, 168, 56, 0.12);
  --border: rgba(245, 240, 232, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
}

/* === MANIFESTO === */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0D0D0F 0%, #12100C 100%);
}

.manifesto::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.manifesto__eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}

.manifesto__headline {
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1.05;
}

.manifesto__glow-line {
  width: 80px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 28px;
  box-shadow: 0 0 12px rgba(232, 168, 56, 0.5);
}

.manifesto__sub {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.7;
  font-weight: 300;
}

.manifesto__right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.manifesto__visual {
  position: relative;
  width: 260px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.manifesto__can {
  position: relative;
  z-index: 1;
}

.manifesto__can img {
  width: 260px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(232, 168, 56, 0.15), 0 4px 20px rgba(0,0,0,0.4);
}

.manifesto__ambient {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* === PRODUCT === */
.product {
  padding: 120px 60px;
  background: var(--bg-2);
  position: relative;
}

.product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.product__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.product__header {
  text-align: center;
  margin-bottom: 80px;
}

.product__headline {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--fg);
  font-weight: 700;
}

.product__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.product__col {
  padding: 0;
}

.product__col h3 {
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 16px;
  font-weight: 700;
}

.product__col p {
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.7;
}

.product__icon {
  margin-bottom: 20px;
}

/* === INGREDIENTS === */
.ingredients {
  padding: 120px 60px;
  background: var(--bg);
}

.ingredients__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ingredients__headline {
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--fg);
  margin-top: 16px;
}

.ingredient-row {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.ingredient-row:last-child {
  border-bottom: none;
}

.ingredient-row__icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(232, 168, 56, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.ingredient-row__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 2px;
}

.ingredient-row__amount {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 8px;
}

.ingredient-row__desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* === OCCASIONS === */
.occasions {
  padding: 120px 60px;
  background: var(--bg-2);
}

.occasions__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.occasions .section-tag {
  display: block;
  margin-bottom: 48px;
}

.occasions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.occasion-card {
  background: var(--bg);
  padding: 48px;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.occasion-card:hover {
  border-color: rgba(232, 168, 56, 0.3);
}

.occasion-card__number {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}

.occasion-card h3 {
  font-size: 24px;
  color: var(--fg);
  margin-bottom: 14px;
  font-weight: 700;
}

.occasion-card p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 160px 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232, 168, 56, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.closing__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.closing__headline {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--fg);
  margin-bottom: 36px;
  font-weight: 800;
}

.closing__body {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.8;
  margin-bottom: 80px;
}

.closing__brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.brand-mark-glow {
  width: 60px;
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(232, 168, 56, 0.6);
  border-radius: 2px;
}

.closing__brand-mark span {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--accent);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .manifesto__inner { grid-template-columns: 1fr; gap: 60px; }
  .manifesto__right { order: -1; }
  .manifesto__visual { width: 180px; height: 320px; }
  .product__columns { grid-template-columns: 1fr; gap: 40px; }
  .ingredients__inner { grid-template-columns: 1fr; }
  .occasions__grid { grid-template-columns: 1fr; }
  .manifesto { padding: 60px 32px; }
  .product { padding: 80px 32px; }
  .ingredients { padding: 80px 32px; }
  .occasions { padding: 80px 32px; }
  .closing { padding: 100px 32px; }
}

@media (max-width: 480px) {
  .manifesto__headline { font-size: 40px; }
  .manifesto__visual { width: 160px; height: 280px; }
  .occasion-card { padding: 32px 24px; }
}