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

:root {
  --cream: #F5F0E8;
  --dark: #0D0C0A;
  --muted: #1A1814;
  --accent: #C8A96E;
  --accent-light: #E8D5A8;
  --text-dim: #8A8070;
  --card-bg: #141210;
  --border: rgba(200,169,110,0.18);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--cream);
}

section {
  padding: 7rem 5vw;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 5vw;
  background: rgba(13,12,10,0.9);
  border-bottom: 1px solid var(--border);
}

.logo,
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  text-decoration: none;
  color: var(--cream);
  font-size: 1.6rem;
}

.logo span,
.footer-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-cta,
.btn-primary,
.btn-outline,
.btn-outline-filled {
  text-decoration: none;
  cursor: pointer;
}

.nav-cta,
.btn-primary {
  background: var(--accent);
  color: var(--dark);
  padding: 1rem 2rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero-tag {
  color: var(--accent);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
}

.hero em {
  color: var(--accent);
}

.hero p {
  max-width: 600px;
  margin: 2rem auto;
  color: var(--text-dim);
  line-height: 1.7;
}

.section-label {
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  margin-bottom: 3rem;
}

.section-title em {
  color: var(--accent);
}

.cards,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}

.card,
.price-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 2rem;
}

.card h3,
.price-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin: 1rem 0;
}

.card p,
.price-desc,
.price-features li {
  color: var(--text-dim);
  line-height: 1.7;
}

.card-tags {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.tag {
  border: 1px solid var(--border);
  padding: .3rem .8rem;
  font-size: .7rem;
}

.price-amount {
  font-size: 3rem;
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-features li {
  margin-bottom: .7rem;
}

.btn-outline {
  border: 1px solid var(--accent);
  padding: 1rem;
  color: var(--accent);
  text-align: center;
  display: block;
}

.btn-outline-filled {
  background: var(--accent);
  color: var(--dark);
  padding: 1rem;
  text-align: center;
  display: block;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-q {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.2rem;
  width: 100%;
  text-align: left;
}

.faq-a {
  margin-top: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
}

footer {
  border-top: 1px solid var(--border);
  padding: 3rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  color: var(--text-dim);
}

@media(max-width:900px){
  .cards,
  .pricing-grid{
    grid-template-columns:1fr;
  }

  .nav-links{
    display:none;
  }
}