:root {
  --cream: #faf8f5;
  --cream-2: #f3eee8;
  --paper: #fffdfb;
  --ink: #2a221c;
  --muted: #6f6258;
  --line: #e4d9ce;
  --orange: #e85d04;
  --orange-dark: #c24e03;
  --shadow: 0 24px 60px rgba(42, 34, 28, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--orange-dark); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.brand span { font-size: 1.15rem; }
.brand em { font-style: normal; color: var(--muted); font-weight: 500; }

.nav-links {
  display: none;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover { background: var(--orange-dark); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 3.5rem;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 0.8rem;
}

h1, h2, h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 0.8rem;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; }

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.fine {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 58%;
  background: radial-gradient(ellipse at center, rgba(232, 93, 4, 0.2), transparent 70%);
  filter: blur(32px);
  z-index: 0;
}

.phone {
  position: relative;
  z-index: 1;
  width: min(360px, 88vw);
}

.phone-body {
  position: relative;
  background: linear-gradient(180deg, #2c2622, #14110f);
  border-radius: 2.85rem;
  padding: 11px 10px 13px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 28px 56px rgba(42, 34, 28, 0.28);
}

.phone-body::before,
.phone-body::after {
  content: "";
  position: absolute;
  background: #1a1613;
  width: 3px;
  border-radius: 2px;
}

.phone-body::before {
  left: -3px;
  top: 22%;
  height: 42px;
}

.phone-body::after {
  right: -3px;
  top: 28%;
  height: 64px;
}

.phone-screen {
  overflow: hidden;
  border-radius: 2.15rem;
  background: #111;
  line-height: 0;
}

.phone-screen img {
  width: 100%;
  height: auto;
  display: block;
}

.phone-sm {
  width: min(200px, 100%);
}

.phone-sm .phone-body {
  border-radius: 2.1rem;
  padding: 8px 7px 9px;
}

.phone-sm .phone-screen { border-radius: 1.65rem; }

.phone-sm .phone-body::before,
.phone-sm .phone-body::after { display: none; }

.device {
  max-width: 200px;
  margin-inline: auto;
}

.device img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.15rem;
  box-shadow: var(--shadow);
}

.section {
  padding: 4rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.2rem;
}

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

.rooms {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .rooms { grid-template-columns: 1fr 1fr; }
}

.room {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.4rem 1.3rem 1.35rem;
  display: grid;
  gap: 1.15rem;
  justify-items: center;
}

@media (min-width: 900px) {
  .room {
    grid-template-columns: minmax(160px, 200px) 1fr;
    align-items: center;
    justify-items: stretch;
    gap: 1.4rem 1.6rem;
    padding: 1.5rem 1.6rem;
  }
}

.room-copy { padding: 0; }

.kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 0.35rem;
}

.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.25rem;
}

.num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--cream-2);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.pricing {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .pricing { grid-template-columns: 1fr 1fr; }
}

.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.6rem;
}

.plan.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.price {
  font-family: Fraunces, Georgia, serif;
  font-size: 2.2rem;
  margin: 0.6rem 0 1rem;
}

.plan ul {
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.plan li {
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
  color: var(--ink);
}

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 99px;
  background: var(--orange);
}

.download {
  background: var(--cream-2);
  border-radius: 1.6rem;
  padding: 2.2rem;
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.footer-links a { text-decoration: none; color: var(--muted); }
.footer-links a:hover { color: var(--ink); }

.legal {
  padding: 3rem 0 5rem;
  max-width: 42rem;
}

.legal h1 { margin-bottom: 0.3rem; }
.legal h2 { margin-top: 2rem; font-size: 1.35rem; }
.legal p, .legal li { color: var(--muted); }
.legal ul { padding-left: 1.2rem; }
.legal strong { color: var(--ink); }
