/* Base */
:root {
  --bg: #F8F6F1;
  --bg-alt: #F0EDE6;
  --fg: #1E1E1E;
  --fg-muted: #6A6560;
  --accent: #0E6E68;
  --accent-light: #0D857E;
  --amber: #E8A545;
  --amber-dark: #C98A28;
  --teal-dark: #075951;
  --white: #FFFFFF;
  --border: #E0DDD6;
  --card-1: #0E6E68;
  --card-2: #2A9D8F;
  --card-3: #E8A545;
  --card-4: #264653;
  --card-5: #F4A261;
  --card-6: #1D3557;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* Typography */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.1; }

/* Hero */
.hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 20px;
}

.hero-price-note {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}

.btn-hero-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-hero-secondary {
  display: inline-block;
  color: var(--fg-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.btn-hero-secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Hero image */
.hero-right {
  overflow: hidden;
  border-radius: 12px;
  height: 292px;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Template Grid */
.template-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 140px);
  gap: 12px;
}

.card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.card-1 { background: var(--card-1); grid-column: span 2; }
.card-2 { background: var(--card-2); }
.card-3 { background: var(--card-3); }
.card-4 { background: var(--card-4); }
.card-5 { background: var(--card-5); grid-column: span 2; }
.card-6 { background: var(--card-6); }

.card-inner {
  padding: 12px 14px;
  background: rgba(0,0,0,0.25);
  width: 100%;
}

.card-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-count {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

/* Section shared */
.section-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.15;
}

/* Collections */
.collections {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.section-header {
  margin-bottom: 56px;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.collection-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.collection-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(14, 110, 104, 0.08);
}

.collection-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.coll-visual {
  margin-bottom: 20px;
}

.coll-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  height: 120px;
}

.cb {
  border-radius: 6px;
}

.cb-1 { background: #0E6E68; }
.cb-2 { background: #2A9D8F; }
.cb-3 { background: #E8A545; }
.cb-4 { background: #264653; }

.cb-5 { background: #1D3557; }
.cb-6 { background: #457B9D; }
.cb-7 { background: #A8DADC; }
.cb-8 { background: #F1FAEE; }

.cb-9 { background: #2B2D42; }
.cb-10 { background: #8D99AE; }
.cb-11 { background: #EDF2F4; }
.cb-12 { background: #EF233C; }

.cb-13 { background: #6D597A; }
.cb-14 { background: #B56576; }
.cb-15 { background: #E56B6F; }
.cb-16 { background: #EAE0D5; }

.coll-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}

.coll-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.coll-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.coll-meta-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.coll-count {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.coll-price {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.coll-buy-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}

.coll-buy-btn:hover {
  background: var(--accent-light);
}

/* Niches */
.niches {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.niches-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.niches-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  padding-top: 48px;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.niche-item {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.niche-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  margin-bottom: 16px;
  opacity: 0.15;
}

.niche-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}

.niche-item p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Philosophy */
.philosophy {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.philosophy .section-header {
  max-width: 540px;
  margin-bottom: 56px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.philosophy-item {
  padding-top: 24px;
  border-top: 2px solid var(--accent);
}

.phil-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}

.philosophy-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.philosophy-item p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Closing */
.closing {
  padding: 100px 48px;
  background: var(--fg);
  color: var(--white);
}

.closing-inner {
  max-width: 720px;
}

.closing-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  max-width: 680px;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.closing-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 600px;
}

.cta-pack {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 24px;
}

.cta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.cta-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-was {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  font-weight: 400;
}

.cta-includes {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.cta-buy-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s;
}

.cta-buy-btn:hover { background: var(--accent-light); }

.closing-store-link {
  margin-top: 32px;
}

.closing-store-link a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.closing-store-link a:hover { color: var(--white); }

/* Footer */
.site-footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.footer-wordmark {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 320px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.footer-nav a {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--accent); }

.footer-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: right;
  max-width: 280px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .niche-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero, .collections, .niches, .philosophy, .closing, .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-main { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .niches-top { grid-template-columns: 1fr; gap: 24px; }
  .niches-body { padding-top: 0; }
  .collections-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr; }
  .closing-cta { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .footer-note { text-align: left; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 20px 40px; }
}
