:root {
  --bg: #11100e;
  --paper: #f7f0e6;
  --paper-soft: #fffaf3;
  --text: #261d17;
  --muted: #776657;
  --gold: #c8974b;
  --brown: #5b3924;
  --shadow: 0 18px 45px rgba(0,0,0,.22);
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(200,151,75,.22), transparent 34rem),
    var(--bg);
  color: var(--text);
}

.phone-page {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.05), 0 30px 80px rgba(0,0,0,.45);
}

.hero {
  position: relative;
  min-height: 72vh;
  color: #fff;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.hero-image-wrap,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  z-index: -3;
}

.hero-shade {
  background:
    linear-gradient(to bottom, rgba(0,0,0,.05) 20%, rgba(0,0,0,.25) 58%, rgba(0,0,0,.78) 100%),
    linear-gradient(to right, rgba(0,0,0,.35), transparent 55%);
  z-index: -2;
}

.hero-content {
  width: 100%;
  padding: 0 22px calc(28px + env(safe-area-inset-bottom));
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.78);
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 18vw, 82px);
  line-height: .9;
  letter-spacing: -0.07em;
  font-weight: 850;
}

.tagline {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255,255,255,.9);
  font-weight: 650;
}

.card {
  margin: 18px 14px;
  padding: 22px 20px;
  background: var(--paper-soft);
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(91,57,36,.10);
}

.card h2 {
  margin: 0 0 12px;
  font-size: 25px;
  letter-spacing: -0.04em;
  color: var(--brown);
}

.card p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--text);
}

.card p:last-child { margin-bottom: 0; }

.intro-card {
  margin-top: -18px;
  position: relative;
  z-index: 2;
}

.family-card {
  background: #efe1cf;
}

.tiles {
  display: grid;
  gap: 10px;
}

.tile {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(200,151,75,.13);
}

.tile span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  font-size: 20px;
}

.tile p {
  margin: 0;
  font-weight: 700;
  line-height: 1.35;
  color: #34251b;
}

.quote-card {
  margin: 18px 14px 34px;
  padding: 28px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #5b3924, #1d1714);
  color: #fff;
  box-shadow: var(--shadow);
}

.quote-card p {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.04em;
  font-weight: 800;
}

@media (min-width: 481px) {
  body {
    padding: 22px 0;
  }

  .phone-page {
    border-radius: 34px;
  }
}
