@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface2: #1a1a1a;
  --text: #e8e6e3;
  --muted: #888;
  --accent: #c9a96e;
  --white: #fff;
}

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

body { background: var(--bg); }

.jb {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  overflow-x: hidden;
}

.jb a { color: inherit; text-decoration: none; }

.jb-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

/* Hero */
.jb-hero { padding: 120px 0 80px; text-align: center; border-bottom: 1px solid #222; }

.jb-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}

.jb-hero .jb-tagline {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Sections */
.jb-section { padding: 80px 0; border-bottom: 1px solid #222; }
.jb-section-head { margin-bottom: 48px; }

.jb-section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.jb-section-head .jb-line { width: 40px; height: 2px; background: var(--accent); margin-top: 12px; }

/* Books - Featured */
.jb-books-featured {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px;
  background: var(--surface);
  border-radius: 4px;
}

.jb-books-featured img {
  width: 200px;
  height: auto;
  flex-shrink: 0;
  border-radius: 2px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.jb-books-featured-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 4px;
}

.jb-books-featured-info .jb-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}

.jb-books-featured-info p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}

.jb-books-featured-info .jb-link,
.jb-venture .jb-link {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  transition: opacity 0.3s;
}

.jb-books-featured-info .jb-link:hover,
.jb-venture .jb-link:hover { opacity: 0.7; }

/* Books - Grid */
.jb-books-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.jb-book-item { text-align: center; transition: transform 0.3s; }
.jb-book-item:hover { transform: translateY(-4px); }

.jb-book-item img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  margin-bottom: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.jb-book-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 4px;
}

.jb-book-item span { font-size: 12px; color: var(--muted); font-weight: 300; }

/* Ventures */
.jb-ventures-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.jb-venture {
  padding: 40px;
  background: var(--surface);
  border-radius: 4px;
  border: 1px solid #222;
  transition: border-color 0.3s;
}

.jb-venture:hover { border-color: #333; }

.jb-venture img {
  height: 48px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.jb-venture h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}

.jb-venture p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
}

.jb-venture .jb-link { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }

/* About */
.jb-about-text {
  max-width: 680px;
  font-size: 17px;
  color: var(--muted);
  line-height: 2;
  font-weight: 300;
}

/* Inquiries */
.jb-inquiries { padding: 80px 0; }

.jb-inquiries h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 32px;
}

.jb-inquiries-list { display: flex; gap: 48px; margin-bottom: 40px; }

.jb-inquiry-type {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 1px;
}

.jb-email {
  font-size: 18px;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 1px;
}

.jb-email:hover { opacity: 0.8; }

/* Footer */
.jb-footer { padding: 32px 0; border-top: 1px solid #222; text-align: center; }
.jb-footer p { font-size: 12px; color: #555; letter-spacing: 1px; }

/* Responsive */
@media (max-width: 768px) {
  .jb-hero h1 { font-size: 48px; }
  .jb-books-featured { flex-direction: column; text-align: center; }
  .jb-books-featured img { width: 160px; }
  .jb-books-grid { grid-template-columns: repeat(2, 1fr); }
  .jb-ventures-grid { grid-template-columns: 1fr; }
  .jb-inquiries-list { flex-direction: column; gap: 16px; }
}
