:root {
  --bg: #FBF7F0;
  --bg-alt: #F2EAE1;
  --fg: #1A1612;
  --accent: #B8860B;
  --accent-light: #D4A843;
  --muted: #8B7355;
  --border: #DDD0BF;
  --white: #FFFDF9;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  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;
  padding: 8rem 2rem 6rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, #F5E6D3 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.7;
}

/* Bracelet Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bracelet-visual {
  position: relative;
  width: 340px;
  height: 260px;
}

.bracelet {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.bracelet.adult {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.bracelet.child {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.bracelet-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bracelet.child .bracelet-ring {
  width: 64px;
  height: 64px;
}

.bracelet-ring::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.bracelet-charm {
  color: var(--accent);
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.bracelet-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* Dotted connector line */
.bracelet-visual::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 95px;
  bottom: 95px;
  width: 1px;
  border-left: 2px dashed var(--border);
  transform: translateX(-50%);
}

/* MISSION */
.mission {
  padding: 7rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mission-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 3rem;
  align-items: start;
}

.mission-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  padding-top: 0.4rem;
}

.mission-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.mission-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
}

/* COLLECTION */
.collection {
  padding: 7rem 2rem;
  background: var(--bg);
}

.collection-header {
  max-width: 900px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.section-num {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.collection-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
}

.collection-intro {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 0.4rem;
}

.collection-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.collection-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.collection-item:hover .item-visual {
  border-color: var(--accent-light);
}

a.collection-item:hover h3 {
  color: var(--accent);
}

.item-visual {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--accent);
}

.item-visual svg {
  opacity: 0.8;
}

.item-label h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.item-label p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.item-sizes {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* PHILOSOPHY */
.philosophy {
  padding: 7rem 2rem;
  background: var(--fg);
  color: var(--bg);
}

.philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}

.philosophy-text .section-num {
  color: var(--accent-light);
}

.philosophy-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 1rem 0 1.5rem;
  color: var(--bg);
}

.philosophy-text p {
  color: #A89880;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 460px;
}

.ring-ornament {
  position: relative;
  width: 140px;
  height: 140px;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.r1 { width: 140px; height: 140px; }
.r2 { width: 105px; height: 105px; border-color: rgba(212, 168, 67, 0.5); }
.r3 { width: 70px; height: 70px; border-color: rgba(212, 168, 67, 0.7); }
.r4 { width: 40px; height: 40px; background: rgba(212, 168, 67, 0.3); border-color: var(--accent-light); }

/* RITUAL */
.ritual {
  padding: 7rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.ritual-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 3rem;
  align-items: start;
}

.ritual-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 1rem 0 1.5rem;
}

.ritual-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 3rem;
}

.ritual-quote {
  padding: 2rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  max-width: 540px;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
}

.ritual-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--fg);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 4rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.brand-mark {
  color: var(--accent);
  font-size: 1rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--border);
  margin-top: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-sub { margin: 0 auto; }
  .hero-visual { order: -1; }
  .bracelet-visual { width: 260px; height: 200px; }
  .mission-inner,
  .ritual-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .mission-number { font-size: 2rem; }
  .collection-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ring-ornament { margin: 0 auto; }
}
