/* Playfolk — June 2026 */

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE8DE;
  --forest: #1E3D2F;
  --forest-light: #2D5447;
  --terracotta: #B85C38;
  --sage: #7A9E7E;
  --sage-light: #A8C4AB;
  --text: #2A2520;
  --text-muted: #6B6259;
  --white: #FFFFFF;
  --border: #D9D2C8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --section-pad: 96px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--forest); }

/* Hero */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 32px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 24px;
}
.hero-body {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  gap: 48px;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

/* Philosophy */
.philosophy {
  background: var(--forest);
  padding: var(--section-pad) 32px;
}
.philosophy-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.philosophy-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
}
.philosophy-text .section-label { color: var(--sage-light); }
.philosophy-text .section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin: 12px 0 24px;
}
.philosophy-text .section-body {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.philosophy-pillars {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar-icon {
  font-size: 0.5rem;
  color: var(--terracotta);
  margin-top: 6px;
  flex-shrink: 0;
}
.pillar strong {
  display: block;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.pillar p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Niche section */
.niches {
  padding: var(--section-pad) 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.niches-header {
  text-align: center;
  margin-bottom: 64px;
}
.niches-header .section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  color: var(--forest);
  font-weight: 600;
  line-height: 1.2;
  margin-top: 12px;
}
.niches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.niche-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.niche-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30,61,47,0.1);
}
.niche-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.niche-body { padding: 32px; background: var(--white); }
.niche-age {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.niche-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}
.niche-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* Collection */
.collection {
  background: var(--cream-dark);
  padding: var(--section-pad) 32px;
}
.collection-inner { max-width: var(--max-w); margin: 0 auto; }
.collection-header {
  text-align: center;
  margin-bottom: 64px;
}
.collection-header .section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  color: var(--forest);
  font-weight: 600;
  line-height: 1.2;
  margin-top: 12px;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.collection-item { }
.collection-img {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.collection-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.collection-item h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}
.collection-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }
.collection-note {
  margin-top: 64px;
  padding: 32px 40px;
  background: var(--forest);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.collection-note::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--terracotta);
  line-height: 1;
  flex-shrink: 0;
}
.collection-note p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: var(--section-pad) 32px;
  background: var(--forest);
}
.closing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.closing-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.closing-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Footer */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--forest);
  display: block;
  margin-bottom: 12px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.875rem; max-width: 240px; }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.9rem;
  color: var(--text);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--terracotta); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* Section labels */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* Mobile */
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 64px;
    gap: 40px;
  }
  .hero-headline { font-size: 2.25rem; }
  .hero-image img { height: 300px; }
  .hero-meta { gap: 32px; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-image img { height: 300px; }
  .niches-grid { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-note { flex-direction: column; padding: 24px; }
  .closing-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing-image img { height: 280px; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .nav-inner { padding: 0 24px; }
}
@media (max-width: 480px) {
  .hero-meta { gap: 24px; }
  .stat-num { font-size: 1.5rem; }
}