:root {
  --bg-deep: #0c0b10;
  --bg-section: #111019;
  --gold: #c9a84c;
  --gold-light: #e8cc7a;
  --champagne: #f5e6c8;
  --cream: #faf7f2;
  --text-muted: #9a8f80;
  --text-body: #d4cdc4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg-deep);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, #1a1628 0%, #0c0b10 60%);
}

.sparkle-layer {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 15%, rgba(201,168,76,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 30%, rgba(201,168,76,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 10%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 25%, rgba(201,168,76,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 40%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 10% 50%, rgba(201,168,76,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, rgba(201,168,76,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 80% 80%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 85%, rgba(201,168,76,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 75%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 15%, rgba(201,168,76,0.6) 0%, transparent 100%);
  animation: sparkle-pulse 4s ease-in-out infinite alternate;
}

@keyframes sparkle-pulse {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: left;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.lede {
  font-size: 18px;
  color: var(--text-body);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.detail-item {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.detail-sep {
  color: var(--text-muted);
  font-size: 11px;
}

/* PILLARS */
.pillars {
  background: var(--bg-section);
  padding: 120px 40px;
}

.pillars-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.pillar {
  padding: 48px 40px;
  border-left: 1px solid rgba(201,168,76,0.15);
  position: relative;
}

.pillar:first-child { border-left: none; }

.pillar--accent {
  background: rgba(201,168,76,0.04);
}

.pillar-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 24px;
  line-height: 1;
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.2;
}

.pillar-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* MANIFESTO */
.manifesto {
  background: var(--bg-deep);
  padding: 140px 40px;
  display: flex;
  justify-content: center;
}

.manifesto-inner {
  max-width: 800px;
}

.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--champagne);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 48px;
}

.manifesto-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 0 auto;
}

/* CLOSING */
.closing {
  background: var(--bg-section);
  padding: 140px 40px;
  display: flex;
  justify-content: center;
}

.closing-inner {
  max-width: 700px;
  text-align: center;
}

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 9vw, 96px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 60px;
  font-weight: 300;
}

.closing-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
  margin: 0 auto 28px;
}

.closing-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* =====================================================================
   SHOWCASE — Product card + inquiry form
   ===================================================================== */

.showcase {
  background: var(--bg-deep);
  padding: 120px 40px;
}

.showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* --- Product Card --------------------------------------------------- */

.product-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.product-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 2;
}

/* --- CSS Art Jar ---------------------------------------------------- */

.jar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  position: relative;
}

.jar {
  position: relative;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 40px 80px rgba(201,168,76,0.12))
          drop-shadow(0 0 120px rgba(201,168,76,0.06));
}

/* Lid */
.jar__lid {
  width: 220px;
  height: 56px;
  background: linear-gradient(180deg, #2a2530 0%, #1a1620 100%);
  border-radius: 4px 4px 0 0;
  position: relative;
  overflow: hidden;
}

.jar__lid-chrome {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg,
    #4a4550 0%, #b8a880 25%, #e8d8a0 50%, #b8a880 75%, #4a4550 100%);
}

.jar__lid-crystals {
  position: absolute;
  inset: 0 0 8px 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  padding: 8px 12px;
  gap: 4px;
}

/* Chrome rim between lid and body */
.jar__rim {
  width: 230px;
  height: 10px;
  background: linear-gradient(90deg,
    #3a3540 0%, #c8b890 20%, #f0e4b8 50%, #c8b890 80%, #3a3540 100%);
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Jar body */
.jar__body {
  width: 240px;
  height: 260px;
  background: linear-gradient(135deg, #1c1a28 0%, #0e0d16 50%, #1a1820 100%);
  border-radius: 0 0 8px 8px;
  position: relative;
  overflow: hidden;
}

.jar__body-crystals {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  padding: 14px 10px;
  gap: 2px;
}

/* Light sheen across the jar face */
.jar__body-sheen {
  position: absolute;
  top: 0;
  left: 10%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.03) 40%,
    rgba(255,255,255,0.07) 50%,
    rgba(255,255,255,0.03) 60%,
    transparent 100%);
  pointer-events: none;
}

/* Chrome base */
.jar__base-chrome {
  width: 250px;
  height: 12px;
  background: linear-gradient(90deg,
    #3a3540 0%, #c8b890 20%, #f0e4b8 50%, #c8b890 80%, #3a3540 100%);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.jar__shadow {
  width: 180px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.6) 0%, transparent 70%);
  margin-top: 16px;
}

/* Individual crystals */
.crystal {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 6px;
  min-height: 6px;
  max-width: 18px;
  max-height: 18px;
  clip-path: polygon(50% 0%, 100% 35%, 85% 100%, 15% 100%, 0% 35%);
  animation: crystal-shimmer var(--shimmer-dur, 3s) ease-in-out infinite;
  animation-delay: var(--shimmer-delay, 0s);
}

/* Lid crystals — warm gold tones */
.c1  { background: var(--gold); --shimmer-dur:2.1s; --shimmer-delay:0s; }
.c2  { background: #e8d080; --shimmer-dur:1.8s; --shimmer-delay:0.3s; }
.c3  { background: #ffffff; --shimmer-dur:2.4s; --shimmer-delay:0.6s; }
.c4  { background: var(--gold-light); --shimmer-dur:1.9s; --shimmer-delay:0.1s; }
.c5  { background: #d4b060; --shimmer-dur:2.2s; --shimmer-delay:0.8s; }
.c6  { background: #ffffff; --shimmer-dur:1.7s; --shimmer-delay:0.4s; }
.c7  { background: var(--gold); --shimmer-dur:2.6s; --shimmer-delay:1.0s; }
.c8  { background: #c8c0a8; --shimmer-dur:2.0s; --shimmer-delay:0.2s; }

/* Body crystals — mix of gold, white, and pale blue-white */
.cx1  { background: var(--gold);       --shimmer-dur:2.3s; --shimmer-delay:0.0s; }
.cx2  { background: #ffffff;           --shimmer-dur:1.8s; --shimmer-delay:0.7s; }
.cx3  { background: #b8d4f0;           --shimmer-dur:2.6s; --shimmer-delay:0.3s; }
.cx4  { background: var(--gold-light); --shimmer-dur:2.0s; --shimmer-delay:1.1s; }
.cx5  { background: #ffffff;           --shimmer-dur:1.9s; --shimmer-delay:0.5s; }
.cx6  { background: var(--gold);       --shimmer-dur:2.4s; --shimmer-delay:0.2s; }
.cx7  { background: #d0e8ff;           --shimmer-dur:2.8s; --shimmer-delay:0.9s; }
.cx8  { background: var(--gold-light); --shimmer-dur:1.7s; --shimmer-delay:0.4s; }
.cx9  { background: #ffffff;           --shimmer-dur:2.2s; --shimmer-delay:1.3s; }
.cx10 { background: var(--gold);       --shimmer-dur:2.5s; --shimmer-delay:0.1s; }
.cx11 { background: #e8d080;           --shimmer-dur:1.8s; --shimmer-delay:0.6s; }
.cx12 { background: #b8c8e8;           --shimmer-dur:2.1s; --shimmer-delay:1.0s; }
.cx13 { background: var(--gold-light); --shimmer-dur:2.7s; --shimmer-delay:0.0s; }
.cx14 { background: #ffffff;           --shimmer-dur:1.6s; --shimmer-delay:0.8s; }
.cx15 { background: var(--gold);       --shimmer-dur:2.3s; --shimmer-delay:1.2s; }
.cx16 { background: #d4ecff;           --shimmer-dur:2.0s; --shimmer-delay:0.3s; }
.cx17 { background: var(--gold-light); --shimmer-dur:1.9s; --shimmer-delay:0.5s; }
.cx18 { background: #ffffff;           --shimmer-dur:2.6s; --shimmer-delay:0.7s; }
.cx19 { background: var(--gold);       --shimmer-dur:2.2s; --shimmer-delay:1.4s; }
.cx20 { background: #b8d0f0;           --shimmer-dur:1.7s; --shimmer-delay:0.2s; }
.cx21 { background: #ffffff;           --shimmer-dur:2.4s; --shimmer-delay:0.9s; }
.cx22 { background: var(--gold-light); --shimmer-dur:2.1s; --shimmer-delay:0.4s; }
.cx23 { background: var(--gold);       --shimmer-dur:1.8s; --shimmer-delay:1.1s; }
.cx24 { background: #c8e4ff;           --shimmer-dur:2.5s; --shimmer-delay:0.6s; }

@keyframes crystal-shimmer {
  0%   { opacity: 0.3; transform: scale(0.85); }
  50%  { opacity: 1;   transform: scale(1); }
  100% { opacity: 0.3; transform: scale(0.85); }
}

/* --- Product Meta --------------------------------------------------- */

.product-card__meta {
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.product-card__edition {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.product-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.product-card__sub {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

/* Product detail list */
.product-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.product-detail__icon {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}

.product-detail__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 4px;
}

.product-detail__desc {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Availability bar */
.product-card__availability {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.availability-bar {
  width: 100%;
  height: 2px;
  background: rgba(201,168,76,0.15);
  border-radius: 1px;
  overflow: hidden;
}

.availability-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 1px;
  transition: width 1.2s ease;
}

.availability-text {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* --- Inquiry Form --------------------------------------------------- */

.inquiry-section {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.inquiry-header {
  margin-bottom: 52px;
}

.inquiry-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.inquiry-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 500px;
  font-weight: 300;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-label--optional {
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(154,143,128,0.6);
  font-size: 10px;
}

.form-input {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.form-input::placeholder {
  color: rgba(154,143,128,0.5);
}

.form-input:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(255,255,255,0.05);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: #1a1820;
  color: var(--cream);
}

.form-textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.6;
}

.btn-inquire {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  align-self: flex-start;
}

.btn-inquire:hover:not(:disabled) {
  background: var(--gold);
  color: var(--bg-deep);
}

.btn-inquire:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-inquire__icon {
  font-size: 16px;
  transition: transform 0.2s;
}

.btn-inquire:hover:not(:disabled) .btn-inquire__icon {
  transform: translateX(4px);
}

.form-feedback {
  font-size: 14px;
  min-height: 20px;
  font-weight: 300;
}

.form-feedback--error   { color: #e87070; }
.form-feedback--success { color: var(--gold-light); }

/* =====================================================================
   MOBILE — all sections
   ===================================================================== */

@media (max-width: 768px) {
  .hero { padding: 60px 24px; }
  .pillars { padding: 80px 24px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 0; }
  .pillar { border-left: none; border-top: 1px solid rgba(201,168,76,0.15); padding: 40px 0; }
  .pillar:first-child { border-top: none; }
  .manifesto { padding: 100px 24px; }
  .closing { padding: 100px 24px; }

  .showcase { padding: 80px 24px; }
  .showcase-inner { gap: 70px; }

  .product-card {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-card__badge { position: static; display: inline-block; margin-bottom: 24px; }
  .product-card__meta { padding-top: 0; }

  .jar-wrapper { min-height: 360px; }
  .jar { transform: scale(0.88); }

  .form-row { grid-template-columns: 1fr; gap: 20px; }

  .btn-inquire { align-self: stretch; justify-content: center; }
}

@media (max-width: 480px) {
  .headline { font-size: 64px; }
  .closing-headline { font-size: 52px; }
  .lede { font-size: 16px; }
  .hero-detail { gap: 12px; }

  .jar { transform: scale(0.78); }
  .inquiry-title { font-size: 36px; }
}