@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,500;700&display=swap");

:root {
  --ink: #15141a;
  --muted: #6a6a78;
  --paper: #f7f4ee;
  --accent: #ff6b35;
  --accent-dark: #d84b1f;
  --teal: #16697a;
  --mint: #d9f7e8;
  --shadow: 0 30px 60px rgba(21, 20, 26, 0.15);
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fce7d9 0%, #f7f4ee 45%, #e7f2f4 100%);
  line-height: 1.6;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(247, 244, 238, 0.85);
  border-bottom: 1px solid rgba(21, 20, 26, 0.08);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(21, 20, 26, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 28px;
  font-weight: 500;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

main {
  padding: 0 6vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: 48px;
  padding: 80px 0 60px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Source Serif 4", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 12px 0 18px;
}

.hero-copy {
  color: var(--muted);
  max-width: 520px;
  font-size: 1.05rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--teal);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

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

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.35);
}

.btn.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: rgba(21, 20, 26, 0.2);
  background: #fff;
}

.hero-card {
  background: #fff;
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(21, 20, 26, 0.08);
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.pill {
  background: var(--mint);
  color: #1a5e4b;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.hero-card h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-metrics {
  display: flex;
  gap: 22px;
}

.hero-metrics div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-metrics strong {
  font-size: 1.4rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 30px 0 70px;
}

.feature {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(21, 20, 26, 0.08);
  box-shadow: 0 20px 40px rgba(21, 20, 26, 0.08);
}

.feature h3 {
  margin-bottom: 10px;
}

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

.recommendations {
  padding: 30px 0 70px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.category-meta {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.cards {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(21, 20, 26, 0.08);
  box-shadow: 0 20px 45px rgba(21, 20, 26, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: #f0f0f4;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.85rem;
  position: relative;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card h3 {
  font-size: 1.2rem;
}

.card ul {
  list-style: disc;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.card .card-cta {
  margin-top: auto;
  width: 100%;
  background: var(--teal);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(22, 105, 122, 0.25);
}

.card .card-cta:hover,
.card .card-cta:focus {
  background: #0f5867;
  transform: translateY(-2px);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9b3c1e;
  font-weight: 600;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 40px;
  padding: 60px 0 40px;
  align-items: start;
}

.contact-copy h2 {
  font-family: "Source Serif 4", serif;
  font-size: 2rem;
  margin: 12px 0 16px;
}

.contact-copy p {
  color: var(--muted);
}

.contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid rgba(21, 20, 26, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(21, 20, 26, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 24px 6vw 40px;
  border-top: 1px solid rgba(21, 20, 26, 0.08);
  font-size: 0.85rem;
  color: var(--muted);
}

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

  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 78px;
    right: 6vw;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(21, 20, 26, 0.08);
    box-shadow: var(--shadow);
    flex-direction: column;
    padding: 16px 20px;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.2s ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
