:root {
  --bg: #faf6f0;
  --bg-warm: #f3ece1;
  --bg-deep: #2c2418;
  --fg: #2c2418;
  --fg-muted: #7a6e5d;
  --fg-light: #b5a995;
  --accent: #c77a2e;
  --accent-light: #e8a94e;
  --accent-glow: rgba(199, 122, 46, 0.15);
  --ocean: #4a8fa8;
  --forest: #5a7c5a;
  --galaxy: #6b4c8a;
  --amber: #c77a2e;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --max-w: 1100px;
  --radius: 16px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-glow);
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(199,122,46,0.25), transparent 70%);
}

.shape-2 {
  width: 400px;
  height: 400px;
  top: 40%;
  left: -10%;
  background: radial-gradient(circle, rgba(74,143,168,0.15), transparent 70%);
}

.shape-3 {
  width: 300px;
  height: 300px;
  bottom: -5%;
  right: 20%;
  background: radial-gradient(circle, rgba(90,124,90,0.12), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  max-width: 520px;
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

.hero-accent {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.resin-drop {
  width: 220px;
  height: 280px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(145deg, rgba(199,122,46,0.2), rgba(232,169,78,0.1), rgba(74,143,168,0.08));
  border: 1px solid rgba(199,122,46,0.12);
  backdrop-filter: blur(2px);
}

/* ── SECTION TAG ── */
.section-tag {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(199,122,46,0.3);
  border-radius: 100px;
}

/* ── STORY ── */
.story {
  padding: 6rem 2rem;
  background: var(--bg);
}

.story-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.story-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.visual-card {
  background: var(--bg-warm);
  border: 1px solid rgba(44,36,24,0.06);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.visual-card:hover {
  transform: translateY(-4px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.visual-card span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.visual-card.card-3 {
  grid-column: span 2;
}

/* ── CRAFT ── */
.craft {
  padding: 6rem 2rem;
  background: var(--bg-deep);
  color: #f3ece1;
}

.craft-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.craft .section-tag {
  border-color: rgba(232,169,78,0.4);
  color: var(--accent-light);
}

.craft h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 3rem;
  color: #f3ece1;
}

.craft-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(232,169,78,0.2);
}

.step-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(232,169,78,0.3);
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.92rem;
  color: rgba(243,236,225,0.6);
  line-height: 1.7;
}

/* ── COLLECTIONS ── */
.collections {
  padding: 6rem 2rem;
  background: var(--bg);
}

.collections-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.collections h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 3rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.collection-item {
  background: var(--bg-warm);
  border: 1px solid rgba(44,36,24,0.05);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s ease;
}

.collection-item:hover {
  transform: translateY(-3px);
}

.collection-item.item-wide {
  grid-column: span 2;
}

.item-swatch {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.swatch-amber {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 4px 20px rgba(199,122,46,0.25);
}

.swatch-ocean {
  background: linear-gradient(135deg, #3a7a94, #6bb5cc);
  box-shadow: 0 4px 20px rgba(74,143,168,0.25);
}

.swatch-forest {
  background: linear-gradient(135deg, #4a6c4a, #7da07d);
  box-shadow: 0 4px 20px rgba(90,124,90,0.25);
}

.swatch-galaxy {
  background: linear-gradient(135deg, #5a3c7a, #9b6ec5);
  box-shadow: 0 4px 20px rgba(107,76,138,0.25);
}

.collection-item h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.collection-item p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ── CLOSING ── */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,122,46,0.08), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.closing-location {
  font-weight: 500;
  font-size: 0.85rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent) !important;
  margin-top: 2rem !important;
}

/* ── FOOTER ── */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg-deep);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: rgba(243,236,225,0.5);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-copy {
  color: rgba(243,236,225,0.3);
  font-size: 0.8rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 5rem 1.5rem 3rem;
  }

  .hero-accent {
    display: none;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-visual {
    grid-template-columns: 1fr 1fr;
  }

  .visual-card.card-3 {
    grid-column: span 2;
  }

  .craft-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-item.item-wide {
    grid-column: span 1;
  }

  .closing {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .craft-steps {
    grid-template-columns: 1fr;
  }

  .story-visual {
    grid-template-columns: 1fr;
  }

  .visual-card.card-3 {
    grid-column: span 1;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}