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

:root {
  --bg:      #2a1a2e;
  --accent:  #c9a96e;
  --text:    #f0e6d3;
  --muted:   #9e8a7a;
  --card-bg: rgba(255,255,255,0.07);
  --radius:  14px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(ellipse at 20% 60%, rgba(120,60,100,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(80,40,90,0.25) 0%, transparent 50%);
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 18px 0;
  background: rgba(30,15,35,0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 48px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.about-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 6% 60px;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 700px;
  width: 100%;
  animation: fadeUp 0.7s ease both;
}

.about-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.about-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.about-logo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text);
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  max-width: 420px;
}

.illustration {
  width: 120px;
  height: 140px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
