@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap");

:root {
  --bg: #f6f1ea;
  --ink: #1a1613;
  --muted: #5e564f;
  --accent: #e4572e;
  --accent-2: #2b5d7d;
  --card: #ffffff;
  --line: rgba(26, 22, 19, 0.12);
  --shadow: 0 18px 45px rgba(26, 22, 19, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
}

.bg-orbit {
  position: fixed;
  inset: -20% -10% auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(228, 87, 46, 0.35), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(43, 93, 125, 0.35), transparent 65%);
  filter: blur(10px);
  z-index: 0;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(26, 22, 19, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 22, 19, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  z-index: 0;
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding: 28px 7vw 0;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag {
  color: var(--muted);
}

main {
  position: relative;
  z-index: 1;
  padding: 40px 7vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  animation: hero-fade 800ms ease-out both;
}

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

h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  margin: 12px 0;
  line-height: 1.05;
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

.primary {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.sub {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  font-size: 0.85rem;
}

.hero-card {
  background: var(--card);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-media {
  background: var(--card);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.media-stack {
  display: grid;
  gap: 14px;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(26, 22, 19, 0.08);
  animation: media-rise 900ms ease-out both;
}

.media-caption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes hero-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes media-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .hero-img {
    animation: none;
  }
}

.card-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.card-list {
  padding-left: 18px;
  color: var(--muted);
}

.card-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.section {
  margin-top: 70px;
}

.section-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 18px;
}

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

.tile {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(26, 22, 19, 0.08);
}

.tile h3 {
  margin-top: 0;
}

.tile ul {
  padding-left: 18px;
  color: var(--muted);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

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

.two-col {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.panel {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
}

.price-inline {
  font-weight: 600;
  color: var(--accent-2);
}

.contact-card {
  background: var(--card);
  border-radius: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer {
  padding: 30px 7vw 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    gap: 6px;
  }

  .hero-card {
    order: 2;
  }
}
