/* ========================
   DESKZEN — Theme CSS
   ======================== */

:root {
  --bg: #FAF8F5;
  --fg: #1A1917;
  --accent: #C85D2A;
  --accent-light: #F0E6DC;
  --muted: #7A7570;
  --surface: #F0EDE8;
  --border: #DDD9D2;
  --sage: #4A5E4A;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.nav-shop-btn {
  margin-left: auto;
  padding: 8px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-shop-btn:hover { background: #b04f22; }

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -2px;
}
.hero-body {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 40px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 420px;
}
.hero-blob {
  border-radius: 50%;
  position: absolute;
  filter: blur(60px);
  opacity: 0.55;
}
.hero-blob-1 {
  width: 320px;
  height: 320px;
  background: #F0E6DC;
  top: 20px;
  right: 20px;
}
.hero-blob-2 {
  width: 200px;
  height: 200px;
  background: #D4C9B8;
  bottom: 40px;
  left: 20px;
}
.hero-stat-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  top: 40px;
  right: 0;
  max-width: 220px;
}
.hero-stat-card-2 {
  top: auto;
  bottom: 60px;
  right: 40px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Divider */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 64px;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* SECTIONS */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -1px;
  max-width: 600px;
}

/* MANIFESTO */
.manifesto {
  background: var(--fg);
  color: #FAF8F5;
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  color: #D4C9B8;
  font-style: italic;
  position: relative;
  padding-top: 20px;
}
.manifesto-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}
.manifesto-body p {
  font-size: 17px;
  line-height: 1.75;
  color: #C8C0B5;
  margin-bottom: 20px;
}
.manifesto-body p:last-child { margin-bottom: 0; }

/* PRODUCTS */
.products {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px;
}
.products-header {
  margin-bottom: 64px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.product-card {
  background: var(--bg);
  padding: 48px 40px;
  transition: background 0.2s;
}
.product-card:hover { background: var(--surface); }
.product-icon-wrap {
  margin-bottom: 20px;
}
.product-icon {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.product-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* PHILOSOPHY */
.philosophy {
  background: var(--surface);
}
.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px;
}
.philosophy-header {
  margin-bottom: 56px;
}
.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.philosophy-card {
  border-top: 2px solid var(--accent);
  padding-top: 28px;
}
.philosophy-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.philosophy-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.philosophy-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.philosophy-outro {
  font-size: 17px;
  color: var(--muted);
  max-width: 680px;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}
.philosophy-outro strong { color: var(--fg); }

/* CLOSING */
.closing {
  background: var(--bg);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px 80px;
  text-align: center;
}
.closing-decor {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.closing-line {
  width: 60px;
  height: 1px;
  background: var(--border);
}
.closing-line:nth-child(1) { width: 30px; }
.closing-line:nth-child(3) { width: 30px; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.closing-sub {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* FOOTER */
.footer {
  background: var(--fg);
  color: #C8C0B5;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #FAF8F5;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 14px;
  color: #8A8278;
  line-height: 1.6;
  max-width: 260px;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-head {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FAF8F5;
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col span:not(.footer-col-head),
.footer-col a {
  display: block;
  font-size: 14px;
  color: #8A8278;
  text-decoration: none;
  line-height: 1.4;
}
.footer-col a:hover { color: #C8C0B5; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 32px;
  border-top: 1px solid #2A2926;
}
.footer-bottom p {
  font-size: 12px;
  color: #5A5752;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 44px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: 1fr; }
  .philosophy-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-divider .divider-label { display: none; }
  .closing-decor { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 20px 40px; }
  .manifesto-inner { padding: 64px 20px; }
  .products { padding: 64px 20px; }
  .philosophy-inner { padding: 64px 20px; }
  .closing-inner { padding: 64px 20px 48px; }
  .product-card { padding: 32px 24px; }
}
