/* CrownCove Theme */
:root {
  --bg: #FAF7F2;
  --fg: #1A1A1A;
  --accent: #C8956B;
  --accent-dark: #9B6E47;
  --muted: #7A7A7A;
  --surface: #F0EBE3;
  --border: #E0D8CF;
  --white: #FFFFFF;
}

* { 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.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* Hero */
.hero {
  position: relative;
  padding: 100px 40px 120px;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(200,149,107,0.08) 0%, transparent 70%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,149,107,0.12) 0%, transparent 70%);
  top: -100px; right: -50px;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,149,107,0.06) 0%, transparent 70%);
  bottom: 50px; left: 20%;
}
.hero-content {
  position: relative;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-pillars {
  display: flex;
  align-items: center;
  gap: 24px;
}
.pillar { text-align: center; }
.pillar-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.pillar-label {
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.pillar-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Philosophy */
.philosophy {
  background: var(--fg);
  color: var(--white);
  padding: 100px 40px;
}
.philosophy-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-mark {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.philosophy-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.philosophy-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  font-weight: 300;
}

/* Collection */
.collection {
  padding: 100px 40px;
}
.collection-header {
  text-align: center;
  margin-bottom: 60px;
}
.collection-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.collection-sub {
  color: var(--muted);
  font-size: 15px;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}
.product-image { aspect-ratio: 4/5; background: var(--surface); }
.product-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E8DDD3 0%, #D4C4B5 100%);
  position: relative;
}
.product-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(200,149,107,0.2) 0%, transparent 60%);
}
.product-info { padding: 24px; }
.product-category {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin: 8px 0 6px;
}
.product-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.price-current {
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
}
.price-retail {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}

/* Difference */
.difference { padding: 100px 40px; background: var(--surface); }
.difference-inner { max-width: 1100px; margin: 0 auto; }
.difference-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 56px;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px 40px;
}
.diff-item h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 12px 0 8px;
}
.diff-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Closing */
.closing {
  padding: 120px 40px;
  text-align: center;
}
.closing-inner { max-width: 580px; margin: 0 auto; }
.closing-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 16px;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-pillars { gap: 16px; }
  .pillar-num { font-size: 22px; }
  .philosophy { padding: 70px 24px; }
  .collection { padding: 70px 24px; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .difference { padding: 70px 24px; }
  .closing { padding: 80px 24px; }
}
@media (max-width: 480px) {
  .collection-grid { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
  .hero-headline { letter-spacing: -1px; }
}