@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --cream: #faf8f4;
  --dark: #1a1410;
  --brown: #8b3a1e;
  --brown-light: #c4602e;
  --purple: #38006c;
  --purple-light: #6a2fa0;
  --gold: #d4a847;
  --gray-light: #f0ede8;
  --gray-mid: #c8c0b4;
  --text-body: #3a3028;
  --card-shadow: 0 8px 40px rgba(26,20,16,0.10);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 15px;
}

/* ─── NAV ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-decoration: none;
}

.navbar-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.navbar-links a {
  color: var(--gray-mid);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  transition: var(--transition);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.navbar-links a.active {
  color: var(--gold);
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--purple) 60%, var(--brown) 100%);
  padding: 80px 48px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-tag {
  display: inline-block;
  background: rgba(212,168,71,0.15);
  border: 1px solid rgba(212,168,71,0.4);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  max-width: 560px;
  position: relative;
}

.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  position: relative;
}

.hero-meta-item {
  text-align: center;
}

.hero-meta-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.hero-meta-item .label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── CONTENT WRAPPER ─── */
.content {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 32px;
}

/* ─── SECTION TITLE ─── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 16px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title::before {
  content: '';
  width: 4px;
  height: 22px;
  background: linear-gradient(to bottom, var(--brown), var(--gold));
  border-radius: 2px;
  flex-shrink: 0;
}

/* ─── CARDS / GRID ─── */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(200,192,180,0.3);
  margin-bottom: 20px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(26,20,16,0.14);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ─── BULLETS ─── */
.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--text-body);
  font-size: 14px;
}

.card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brown-light);
  font-weight: 600;
}

/* ─── SCREEN SECTION ─── */
.screen-section {
  margin-top: 48px;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.screen-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid rgba(200,192,180,0.25);
}

.screen-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(26,20,16,0.18);
}

.screen-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  margin: 0;
}

.screen-label {
  padding: 14px 16px;
  background: #fff;
}

.screen-label h4 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  margin: 0 0 4px;
  border: none;
}

.screen-label p {
  font-size: 12px;
  color: var(--gray-mid);
  line-height: 1.4;
}

/* ─── TOOLS PILLS ─── */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  background: var(--gray-light);
  color: var(--purple);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(56,0,108,0.12);
}

/* ─── CONCLUSION BOX ─── */
.conclusion-box {
  background: linear-gradient(135deg, var(--purple) 0%, var(--brown) 100%);
  border-radius: 20px;
  padding: 36px 40px;
  margin-top: 48px;
  color: #fff;
}

.conclusion-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 12px;
  text-decoration: none;
  text-align: left;
}

.conclusion-box p {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.8;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 24px;
  font-size: 13px;
  margin-top: 64px;
}

.footer span {
  color: var(--gold);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 700px) {
  .navbar { padding: 0 20px; }
  .hero { padding: 48px 20px 40px; }
  .content { padding: 32px 16px; }
  .two-col { grid-template-columns: 1fr; }
  .screen-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { gap: 20px; }
}