:root {
  --bg: #ffffff;
  --bg-muted: #f7f6f5;
  --txt: #22262a;
  --muted: #596067;
  --primary: #e6a4b4;
  --accent: #c1440e;
  --glass: rgba(255,255,255,0.7);

  --fs-sm: 0.9375rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xxl: 2.5rem;

  --container: 1100px;
  --radius: 12px;
  --gutter: 1.25rem;
  --card-elevation: 0 8px 30px rgba(16,24,40,0.06);

  --t-fast: 160ms;
  --t-std: 320ms;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.5;
  font-size: var(--fs-base);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  font-weight: 800;
  color: var(--accent);
  font-size: 1.1rem;
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

nav a {
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}

nav a:hover {
  color: var(--txt);
}

.hero {
  min-height: 88vh;
  padding: 4rem 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background-image: linear-gradient(rgba(7,10,12,0.28), rgba(7,10,12,0.28)),
    url('https://assets.hldycdn.com/articles/4eeb57_c081a6774b7542d48e3ce23cf19c2cfe~mv2.jpg');
  background-size: cover;
}

.hero-inner {
  max-width: 900px;
  padding: 2rem;
}

.hero h1 {
  font-size: var(--fs-xxl);
  margin-bottom: 0.5rem;
}

.cta {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: white;
  text-decoration: none;
  font-weight: 800;
  transition: transform var(--t-fast);
}

.cta:hover {
  transform: translateY(-4px);
}

.page {
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.alt {
  background: var(--bg-muted);
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head h2 {
  color: var(--accent);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-elevation);
  transition: transform var(--t-std);
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem;
}

.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.list {
  padding-left: 1rem;
}

.plan {
  max-width: 900px;
  margin: auto;
}

.plan-item {
  background: var(--glass);
  padding: 1.25rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

form {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--card-elevation);
  max-width: 700px;
  margin: auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input, textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #ddd;
}

textarea {
  min-height: 140px;
}

.submit {
  margin-top: 1rem;
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: none;
  background: var(--primary);
  color: var(--accent);
  font-weight: 800;
}

.submit:hover {
  background: var(--accent);
  color: white;
}

.site-footer {
  background: #111;
  color: #eee;
  text-align: center;
  padding: 2rem 0;
}

@media(max-width: 980px) {
  .cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cols-2 {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 640px) {
  nav ul {
    display: none;
  }

  .cols-3 {
    grid-template-columns: 1fr;
  }
}
