:root {
  --saffron: #d66a1f;
  --deep: #4d210b;
  --maroon: #8c1d2c;
  --cream: #fff7e7;
  --card: #fffdf7;
  --green: #22633c;
  --text: #2e241c;
  --muted: #6d5e53;
  --line: rgba(126, 72, 20, .22);
  font-family: Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 183, 77, .35), transparent 30%),
    linear-gradient(180deg, #fff9ee 0%, #fff2d8 100%);
}
a { color: var(--maroon); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(255, 248, 235, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; text-decoration: none; color: var(--deep); }
.brand-mark { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--saffron); color: white; }
.nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.nav a { text-decoration: none; color: var(--deep); font-weight: 700; }
.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 72px); align-items: center; padding: clamp(38px, 7vw, 86px) clamp(18px, 5vw, 64px); max-width: 1180px; margin: auto; }
.eyebrow { color: var(--green); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; }
h1 { font-size: clamp(2.8rem, 7vw, 5.9rem); line-height: .95; color: var(--maroon); margin: 12px 0 18px; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.05; color: var(--deep); margin: 8px 0 14px; }
h3 { color: var(--maroon); font-size: 1.35rem; }
.lead { font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.5; max-width: 720px; }
.status, .small { color: var(--muted); font-size: .96rem; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0 14px; }
.button { padding: 13px 18px; border-radius: 999px; text-decoration: none; font-weight: 800; border: 1px solid var(--line); }
.primary { background: var(--saffron); color: white; border-color: var(--saffron); }
.secondary { background: #fff; color: var(--deep); }
.hero-card { background: white; padding: 16px; border-radius: 28px; box-shadow: 0 22px 70px rgba(103, 48, 12, .18); border: 1px solid var(--line); }
.hero-card img { width: 100%; display: block; border-radius: 18px; }
.section { max-width: 1080px; margin: 0 auto 28px; padding: clamp(28px, 5vw, 56px) clamp(18px, 5vw, 64px); }
.grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.panel, .warm, .contact { background: rgba(255, 253, 247, .82); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 14px 45px rgba(103, 48, 12, .09); }
.panel { padding: 24px; }
.ticks { list-style: none; padding: 0; margin: 0; }
.ticks li { margin: 12px 0; padding-left: 28px; position: relative; }
.ticks li::before { content: "♥"; color: var(--saffron); position: absolute; left: 0; }
.launch-box ol { padding-left: 20px; }
.footer { text-align: center; padding: 32px 18px 48px; color: var(--muted); }
@media (max-width: 820px) {
  .hero, .grid-two { grid-template-columns: 1fr; }
  .site-header { position: static; }
}
