/* BrandcraftOS — Editorial beauty brand system */
:root {
  --bg: #FAF7F2;
  --bg-warm: #F2EBE0;
  --burgundy: #52171C;
  --burgundy-deep: #2E0D10;
  --rose: #BFA07A;
  --rose-light: #D4BC96;
  --text: #1A0E11;
  --text-muted: #6B5455;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(82,23,28,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(191,160,122,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 48px; right: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-light), transparent);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--burgundy-deep);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--rose);
}
.hero-lede {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-tagline-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tagline-pill {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  border: 1px solid rgba(82,23,28,0.25);
  padding: 7px 16px;
  border-radius: 100px;
}

/* Hero Artwork */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-artwork {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(191,160,122,0.2);
}
.art-ring-1 { width: 320px; height: 320px; animation: spin-slow 20s linear infinite; }
.art-ring-2 { width: 240px; height: 240px; border-style: dashed; animation: spin-slow 14s linear infinite reverse; }
.art-ring-3 { width: 160px; height: 160px; border-color: rgba(82,23,28,0.15); animation: spin-slow 9s linear infinite; }
.art-center {
  position: absolute;
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, #52171C, #8B3A3A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(82,23,28,0.2);
}
.art-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spin-slow 30s linear infinite;
}
.art-dots span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--rose);
  border-radius: 50%;
  opacity: 0.5;
}
.art-dots span:nth-child(1)  { top: 0;    left: 50%; transform: translateX(-50%); }
.art-dots span:nth-child(2)  { top: 10%;  left: 80%; }
.art-dots span:nth-child(3)  { top: 30%;  left: 97%; }
.art-dots span:nth-child(4)  { top: 50%;  left: 100%; transform: translateY(-50%); }
.art-dots span:nth-child(5)  { top: 70%;  left: 97%; }
.art-dots span:nth-child(6)  { top: 90%;  left: 80%; }
.art-dots span:nth-child(7)  { top: 100%; left: 50%; transform: translateX(-50%); }
.art-dots span:nth-child(8)  { top: 90%;  left: 20%; }
.art-dots span:nth-child(9)  { top: 70%;  left: 3%; }
.art-dots span:nth-child(10) { top: 50%;  left: 0;    transform: translateY(-50%); }
.art-dots span:nth-child(11) { top: 30%;  left: 3%; }
.art-dots span:nth-child(12) { top: 10%;  left: 20%; }
.art-dots span:nth-child(13) { top: 0;    left: 50%; transform: translateX(-50%); }
.art-dots span:nth-child(14) { top: 10%;  left: 80%; }
.art-dots span:nth-child(15) { top: 30%;  left: 97%; }

@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ─── Section shared ─── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--burgundy-deep);
  margin-bottom: 56px;
}

/* ─── Services ─── */
.services {
  background: var(--bg-warm);
  padding: 96px 48px;
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--cream);
  padding: 48px 40px;
  border: 1px solid rgba(191,160,122,0.2);
  transition: border-color 0.3s ease;
}
.service-card:hover { border-color: var(--rose); }
.service-icon {
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--burgundy-deep);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Philosophy ─── */
.philosophy {
  padding: 96px 48px;
  background: var(--burgundy-deep);
  color: var(--cream);
}
.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quote-mark { margin-bottom: 24px; }
blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 20px;
}
.philosophy-quote-block cite {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-light);
  font-style: normal;
}
.philosophy-text-block h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 28px;
}
.philosophy-text-block p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(250,247,242,0.65);
  line-height: 1.75;
  margin-bottom: 16px;
}
.philosophy-text-block em {
  font-style: italic;
  color: var(--rose-light);
}

/* ─── Outcomes ─── */
.outcomes {
  padding: 96px 48px;
  background: var(--bg);
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--burgundy-deep);
  margin-bottom: 64px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.outcome-item { position: relative; }
.outcome-number {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--rose);
  margin-bottom: 20px;
}
.outcome-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--burgundy-deep);
  margin-bottom: 12px;
  line-height: 1.3;
}
.outcome-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Closing ─── */
.closing {
  padding: 120px 48px;
  background: var(--bg-warm);
  overflow: hidden;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: center;
}
.closing-art {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.closing-circle {
  position: absolute;
  border-radius: 50%;
}
.c1 { width: 180px; height: 180px; border: 1px solid rgba(82,23,28,0.15); }
.c2 { width: 130px; height: 130px; border: 1px dashed rgba(191,160,122,0.3); }
.c3 { width: 80px;  height: 80px;  background: linear-gradient(135deg, var(--burgundy), #8B3A3A); }
.closing-vert-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 200px;
  background: linear-gradient(180deg, var(--rose-light), transparent);
}
.closing-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--burgundy-deep);
  margin-bottom: 20px;
}
.closing-text p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}

/* ─── Footer ─── */
.footer {
  padding: 48px;
  border-top: 1px solid rgba(191,160,122,0.2);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--burgundy-deep);
  display: block;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}
.footer-tagline p {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-artwork { width: 200px; height: 200px; }
  .art-ring-1 { width: 200px; height: 200px; }
  .art-ring-2 { width: 150px; height: 150px; }
  .art-ring-3 { width: 100px; height: 100px; }
  .art-center { width: 64px; height: 64px; }
  .hero-headline { font-size: 40px; }
  .services, .philosophy, .outcomes { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .closing-inner { grid-template-columns: 1fr; }
  .closing-art { display: none; }
  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}