:root {
  color-scheme: dark;
  --bg: #0a0608;
  --bg-alt: #14090d;
  --text: #f8f2f4;
  --muted: #d1b9c0;
  --accent: #ff2d55;
  --accent-2: #ff6a88;
  --card: #1a0c12;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.hero {
  padding: 48px 10vw 72px;
  background: radial-gradient(circle at top left, rgba(255, 45, 85, 0.3), transparent 60%),
    radial-gradient(circle at top right, rgba(255, 106, 136, 0.25), transparent 55%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 60px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.nav-link {
  font-size: 0.95rem;
  color: var(--muted);
  margin-left: 24px;
}

.hero-content {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 12px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  margin-bottom: 16px;
}

.subhead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1b0f1f;
  box-shadow: var(--shadow);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.hero-image {
  height: 260px;
  border-radius: 18px;
  background: url("../assets/hero.png") center/cover no-repeat,
    linear-gradient(135deg, rgba(255, 45, 85, 0.35), rgba(255, 106, 136, 0.35));
  margin-bottom: 16px;
}

.hero-card-text h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 8px;
}

.section {
  padding: 72px 10vw;
}

.section.alt {
  background: var(--bg-alt);
}

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

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.card-image {
  height: 180px;
  border-radius: 16px;
  margin-bottom: 12px;
  background-size: cover;
  background-position: center;
}

.card-one {
  background: url("../assets/1.png") center/cover no-repeat,
    linear-gradient(140deg, rgba(255, 45, 85, 0.45), rgba(255, 106, 136, 0.3));
}

.card-two {
  background: url("../assets/2.png") center/cover no-repeat,
    linear-gradient(140deg, rgba(255, 106, 136, 0.35), rgba(255, 255, 255, 0.06));
}

.card-three {
  background: url("../assets/3.png") center/cover no-repeat,
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 45, 85, 0.4));
}

.split {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.split ul {
  list-style: none;
  margin-top: 16px;
}

.split li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.split li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent-2);
}

.about-card {
  background: linear-gradient(160deg, rgba(255, 45, 85, 0.25), rgba(255, 106, 136, 0.15));
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.about-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 12px;
}

.cta-card {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 40px 10vw;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link {
    margin-left: 0;
  }
}
