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

    :root {
      --ink: #1a1814;
      --parchment: #f5f0e8;
      --warm-white: #faf8f4;
      --sage: #7a8c75;
      --sage-light: #a8b8a3;
      --sage-tint: #e8ede4;
      --sage-dark: #5d6f58;
      --gold: #b8975a;
      --gold-light: #d4b47a;
      --gold-tint: #f3ebd9;
      --muted: #7a746a;
      --border: rgba(26,24,20,0.1);
      --serif: 'Cormorant Garamond', serif;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--warm-white);
      color: var(--ink);
      font-weight: 300;
      line-height: 1.6;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 3rem;
      border-bottom: 1px solid var(--border);
      background: var(--warm-white);
    }
    .nav-logo {
      font-family: var(--serif);
      font-size: 1.6rem;
      font-weight: 400;
      letter-spacing: 0.05em;
      color: var(--ink);
      text-decoration: none;
    }
    .nav-tag {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .nav-tag strong { color: var(--ink); font-weight: 500; letter-spacing: 0.05em; text-transform: none; font-family: var(--serif); font-size: 0.95rem; margin-right: 0.3rem; }
    .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
    .nav-links a {
      font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--muted); text-decoration: none; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--ink); }

    /* Hero — preamble + app preview */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      max-width: 1160px;
      margin: 0 auto;
      padding: 5rem 3rem 4rem;
    }
    .hero-text { max-width: 480px; }
    .hero .eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      display: inline-flex; align-items: center; gap: 1rem;
    }
    .hero .eyebrow::before {
      content: ''; display: block; width: 2rem; height: 1px; background: var(--gold);
    }
    .hero h1 {
      font-family: var(--serif);
      font-size: clamp(2.4rem, 4.5vw, 3.6rem);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.01em;
      margin-bottom: 1.25rem;
      text-wrap: balance;
    }
    .hero h1 em { font-style: italic; color: var(--sage-dark); }
    .hero-lede {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 2rem;
      max-width: 42ch;
    }
    .hero-sub {
      display: flex; gap: 1rem; align-items: center;
      font-size: 0.8rem; color: var(--muted);
      letter-spacing: 0.08em; text-transform: uppercase;
    }
    .hero-sub .tick { color: var(--sage-dark); }
    .hero-sub .sep { width: 1px; height: 14px; background: var(--border); }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--ink);
      color: var(--warm-white);
      padding: 0.95rem 1.6rem;
      border-radius: 2px;
      font-family: var(--sans);
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 500;
      margin: 1.75rem 0 1.75rem;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .hero-cta:hover { background: var(--gold); color: var(--ink); transform: translateY(-1px); }
    .hero-cta-note {
      display: block;
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: -0.5rem;
      margin-bottom: 1.2rem;
      font-style: italic;
    }

    .hero-visual {
      display: flex; justify-content: center; align-items: center;
      position: relative;
    }
    .hero-visual::before {
      content: '';
      position: absolute;
      inset: -2rem -1rem -2rem -1rem;
      background: radial-gradient(ellipse at center, rgba(184,151,90,0.08) 0%, transparent 70%);
      z-index: 0;
    }
    .phone {
      position: relative; z-index: 1;
      width: 100%; max-width: 280px;
      padding: 10px;
      border-radius: 40px;
      background: #1a1814;
      box-shadow: 0 30px 70px rgba(26,24,20,0.18), 0 0 0 1px rgba(255,255,255,0.05);
    }
    .phone img {
      width: 100%;
      display: block;
      border-radius: 30px;
      aspect-ratio: 461/996;
      object-fit: cover;
      object-position: top;
      background: #f5f0e8;
    }
    .phone-caption {
      position: absolute;
      bottom: -2rem;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      z-index: 2;
    }
    .phone-caption strong { color: var(--ink); font-weight: 500; }

    /* Divider above chooser */
    .chooser-heading {
      text-align: center;
      padding: 0 2rem 1.5rem;
      max-width: 640px;
      margin: 0 auto;
    }
    .chooser-heading .label {
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--muted);
      display: inline-flex; align-items: center; gap: 1rem;
    }
    .chooser-heading .label::before, .chooser-heading .label::after {
      content: ''; display: block; width: 2.4rem; height: 1px; background: var(--border);
    }

    /* Chooser */
    .chooser {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-top: 1px solid var(--border);
      min-height: 520px;
    }
    .side {
      position: relative;
      padding: 5rem 4rem 4rem;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      transition: background 0.35s ease;
      overflow: hidden;
    }
    .side + .side { border-left: 1px solid var(--border); }

    .side.bereaved { background: var(--sage-tint); }
    .side.bereaved:hover { background: #dde7d9; }
    .side.planner { background: var(--warm-white); }
    .side.planner:hover { background: var(--gold-tint); }

    /* top tag */
    .side-tag {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 2.5rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .side.bereaved .side-tag { color: var(--sage-dark); }
    .side.planner .side-tag { color: var(--gold); }
    .side-tag .dot {
      width: 8px; height: 8px; border-radius: 50%;
    }
    .side.bereaved .side-tag .dot { background: var(--sage); }
    .side.planner .side-tag .dot { background: var(--gold); }

    .side h2 {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: -0.01em;
      margin-bottom: 1.2rem;
      text-wrap: balance;
    }
    .side h2 em { font-style: italic; }
    .side.bereaved h2 em { color: var(--sage-dark); }
    .side.planner h2 em { color: var(--gold); }

    .side-desc {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 40ch;
      margin-bottom: 2.5rem;
    }

    .side-bullets {
      list-style: none;
      margin-bottom: 3rem;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }
    .side-bullets li {
      font-size: 0.92rem;
      color: var(--ink);
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      line-height: 1.55;
    }
    .side-bullets li::before {
      content: '';
      flex-shrink: 0;
      margin-top: 0.55rem;
      width: 16px; height: 1px;
    }
    .side.bereaved .side-bullets li::before { background: var(--sage); }
    .side.planner .side-bullets li::before { background: var(--gold); }

    .side-meta {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      gap: 1rem;
    }
    .side-price {
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .side-price strong {
      display: block;
      font-family: var(--serif);
      font-size: 1.8rem;
      letter-spacing: 0;
      color: var(--ink);
      font-weight: 400;
      text-transform: none;
      margin-bottom: 0.2rem;
      line-height: 1;
    }
    .side-price span {
      display: block;
      font-size: 0.72rem;
      color: var(--muted);
      letter-spacing: 0.05em;
      text-transform: none;
      margin-top: 0.3rem;
    }

    .side-arrow {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--ink);
      font-weight: 500;
    }
    .side-arrow .line {
      width: 2.4rem; height: 1px; background: var(--ink);
      transition: width 0.3s ease;
    }
    .side:hover .side-arrow .line { width: 3.6rem; }

    /* Decorative watermark */
    .side-watermark {
      position: absolute;
      right: -40px; bottom: -40px;
      font-family: var(--serif);
      font-size: 14rem;
      font-weight: 300;
      line-height: 0.9;
      font-style: italic;
      color: rgba(26,24,20,0.03);
      pointer-events: none;
      user-select: none;
    }
    .side.bereaved .side-watermark { color: rgba(93,111,88,0.08); }
    .side.planner .side-watermark { color: rgba(184,151,90,0.08); }

    /* Below-fold strip */
    .bottom-strip {
      border-top: 1px solid var(--border);
      padding: 2rem 3rem;
      text-align: center;
      font-size: 0.82rem;
      color: var(--muted);
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      align-items: center;
      background: var(--parchment);
    }
    .bottom-strip a {
      color: var(--ink);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      padding-bottom: 1px;
      transition: border-color 0.2s;
    }
    .bottom-strip a:hover { border-color: var(--ink); }

    footer {
      background: var(--ink);
      color: rgba(245,240,232,0.5);
      padding: 2rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.78rem;
      letter-spacing: 0.03em;
    }
    footer a { color: var(--parchment); text-decoration: none; }
    footer .footer-logo { font-family: var(--serif); font-size: 1.1rem; }
    footer ul { list-style: none; display: flex; gap: 1.8rem; }

    .download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;

    padding: 14px 28px;

    background: #111;
    color: white;

    border-radius: 12px;

    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;

    transition: all .2s ease;
}

.app-store-btn svg {
    width: 24px;
    height: 24px;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

    @media (max-width: 860px) {
      nav { padding: 1rem 1.5rem; flex-wrap: wrap; gap: 0.5rem; }
      .nav-tag { display: none; }
      .nav-links { gap: 1.2rem; }
      .hero { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem 3rem; text-align: center; }
      .hero-text { max-width: none; margin: 0 auto; }
      .hero-lede { margin-left: auto; margin-right: auto; }
      .hero .eyebrow { justify-content: center; }
      .hero-sub { justify-content: center; flex-wrap: wrap; }
      .hero-visual { order: -1; }
      .phone { max-width: 220px; }
      .chooser-heading { padding: 1rem 1.5rem; }
      .chooser { grid-template-columns: 1fr; min-height: 0; }
      .side + .side { border-left: 0; border-top: 1px solid var(--border); }
      .side { padding: 3rem 1.5rem 3rem; }
      .side h2 { max-width: none; }
      .side-watermark { font-size: 9rem; }
      .bottom-strip { padding: 1.5rem; gap: 1rem; }
      footer { padding: 1.5rem; flex-direction: column; text-align: center; }
      footer ul { justify-content: center; flex-wrap: wrap; }
    }
