/* KreateOS Theme */
:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EAE3;
  --text: #1A1714;
  --text-muted: #6B5F54;
  --accent: #C4956A;
  --accent-dark: #A87D56;
  --border: #E0D6CC;
}

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

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

/* Nav */
.nav {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* Hero */
.hero {
  padding: 5rem 3rem 4rem;
  background: var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* Hero card stack */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 280px;
  height: 260px;
}
.stack-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}
.stack-card:hover { transform: translateY(-2px); }
.stack-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stack-card-1 { top: 0; left: 20px; }
.stack-card-2 { top: 55px; right: 0; }
.stack-card-3 { top: 115px; left: 0; }
.stack-card-4 { top: 175px; right: 20px; }

/* Features */
.features {
  padding: 5rem 3rem;
  background: var(--bg-alt);
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-header { margin-bottom: 3rem; }
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.features-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  max-width: 520px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}
.feature-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Manifesto */
.manifesto {
  padding: 5rem 3rem;
  background: var(--text);
  color: white;
}
.manifesto-inner { max-width: 700px; margin: 0 auto; }
.manifesto .section-label { color: var(--accent); }
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: white;
  margin: 1.25rem 0 2rem;
}
.manifesto-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Closing */
.closing {
  padding: 5rem 3rem;
  background: var(--accent);
  text-align: center;
}
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.closing-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

/* Footer */
.footer {
  padding: 2rem 3rem;
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* Nav spread layout (logo left, CTA right) */
.nav-inner--spread {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { text-decoration: none; color: var(--text); }
.nav-shop-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: background 0.2s ease;
}
.nav-shop-btn:hover { background: var(--accent-dark); }

/* Shop page */
.shop-header {
  padding: 4rem 3rem 3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.shop-header-inner { max-width: 700px; margin: 0 auto; }
.shop-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
}
.shop-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.shop-products { padding: 4rem 3rem; background: var(--bg); }
.shop-products-inner { max-width: 1100px; margin: 0 auto; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.product-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.product-image-wrap {
  position: relative;
  background: var(--bg-alt);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.product-category-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: white;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.product-info { padding: 1.5rem; }
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.product-tagline {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.product-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.product-pricing {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.product-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}
.product-compare {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-badge {
  background: #E8F5E9;
  color: #388E3C;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.product-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--text);
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.product-cta:hover { background: #2C2520; }

/* Shop CTA banner */
.shop-cta-banner {
  text-align: center;
  padding: 3rem;
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.shop-cta-banner p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.btn-primary:hover { background: var(--accent-dark); }

.shop-empty { text-align: center; padding: 3rem; color: var(--text-muted); }
.shop-empty a { color: var(--accent); }

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 2.2rem; }
  .features { padding: 3rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 3rem 1.5rem; }
  .manifesto-quote { font-size: 1.4rem; }
  .closing { padding: 3rem 1.5rem; }
  .closing-headline { font-size: 2rem; }
  .footer { padding: 1.5rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .shop-header { padding: 2.5rem 1.5rem; }
  .shop-products { padding: 2.5rem 1.5rem; }
  .product-grid { grid-template-columns: 1fr; }
}