
    :root {
      --black: #081a2c;
      --yellow: #e9bd70;
      --pink: #956022;
      --white: #ffffff;
      --muted: #5b5b5b;
      --soft: #f5f5f5;
    }

    * { box-sizing: border-box; }

    html, body {
      margin: 0;
      padding: 0;
      background: #ffffff;
      color: #111;
      font-family: Arial, Helvetica, sans-serif;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    body {
      min-height: 100vh;
    }

    a {
      color: inherit;
    }

    .page {
      width: 100%;
      overflow-x: hidden;
    }

    .hero {
      background:
        radial-gradient(circle at 85% 10%, rgba(149,96,34,.16), transparent 22%),
        radial-gradient(circle at 10% 20%, rgba(233,189,112,.11), transparent 26%),
        var(--black);
      color: var(--white);
      border-bottom: 8px solid var(--yellow);
    }

    .hero-inner {
      width: min(1120px, calc(100% - 36px));
      margin: 0 auto;
      padding: 54px 0 50px;
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 46px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #fff;
      background: rgba(255,255,255,.06);
      margin-bottom: 18px;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(46px, 7vw, 86px);
      line-height: .93;
      letter-spacing: -2.5px;
      text-transform: uppercase;
      font-weight: 900;
      max-width: 760px;
    }

    .hero h1 .yellow {
      color: var(--yellow);
    }

    .hero h1 .pink {
      color: var(--pink);
    }

    .hero-copy {
      margin-top: 22px;
      max-width: 650px;
      color: #ececec;
      font-size: 20px;
      line-height: 1.55;
    }

    .hero-copy strong {
      color: #fff;
    }

    .sender-chip {
      display: inline-flex;
      flex-direction: column;
      gap: 3px;
      margin-top: 24px;
      padding: 14px 18px;
      border: 2px solid var(--yellow);
      border-radius: 14px;
      background: rgba(233,189,112,.09);
    }

    .sender-chip small {
      color: #cfcfcf;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 800;
    }

    .sender-chip a {
      color: #fff;
      text-decoration: none;
      font-weight: 900;
      font-size: 18px;
    }

    .book-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .book-card {
      position: relative;
      width: min(340px, 88%);
      transform: rotate(2deg);
      filter: drop-shadow(0 22px 34px rgba(0,0,0,.38));
    }

    .book-card::before {
      content: "";
      position: absolute;
      inset: 14px -14px -14px 14px;
      background: #142a40;
      border-radius: 8px;
      z-index: -1;
    }

    .book-card img {
      width: 100%;
      display: block;
      border-radius: 8px;
      border: 2px solid rgba(255,255,255,.12);
    }

    .content {
      width: min(980px, calc(100% - 36px));
      margin: 0 auto;
      padding: 54px 0 60px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 30px;
    }

    .section-title .check {
      width: 66px;
      height: 66px;
      border-radius: 50%;
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--pink);
      color: #fff;
      font-size: 32px;
      font-weight: 900;
      box-shadow: 0 0 0 8px #fff, 0 0 0 11px var(--yellow);
    }

    .section-title h2 {
      margin: 0;
      font-size: clamp(32px, 5vw, 52px);
      line-height: 1;
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: -1.4px;
    }

    .section-title p {
      margin: 14px auto 0;
      max-width: 720px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.6;
    }

    .email-box {
      margin: 34px auto 0;
      max-width: 680px;
      padding: 24px;
      text-align: center;
      background: #fff4df;
      border: 3px solid var(--yellow);
      border-radius: 18px;
    }

    .email-box .label {
      display: block;
      margin-bottom: 6px;
      color: #666;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 900;
    }

    .email-box a {
      display: inline-block;
      color: #111;
      text-decoration: none;
      font-size: clamp(22px, 4vw, 30px);
      font-weight: 900;
      overflow-wrap: anywhere;
    }

    .notice {
      margin: 28px auto 0;
      max-width: 680px;
      padding: 24px;
      border-radius: 18px;
      background: var(--soft);
      border-left: 8px solid var(--pink);
    }

    .notice h3 {
      margin: 0 0 8px;
      font-size: 24px;
      font-weight: 900;
    }

    .notice p {
      margin: 0;
      color: #444;
      font-size: 17px;
      line-height: 1.55;
    }

    .notice strong {
      color: var(--pink);
    }

    .mini-steps {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .mini-step {
      border: 1px solid #e7e7e7;
      border-radius: 16px;
      padding: 20px 18px;
      text-align: center;
      background: #fff;
    }

    .mini-step .num {
      width: 38px;
      height: 38px;
      margin: 0 auto 10px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #111;
      color: var(--yellow);
      font-weight: 900;
    }

    .mini-step strong {
      display: block;
      margin-bottom: 5px;
      font-size: 17px;
    }

    .mini-step span {
      color: #666;
      font-size: 14px;
      line-height: 1.45;
    }

    .footer-banner {
      background: var(--yellow);
      color: #111;
      text-align: center;
      padding: 20px 18px;
      font-weight: 900;
      font-size: 17px;
      text-transform: uppercase;
      letter-spacing: .02em;
    }

    .site-footer {
      background: #111;
      color: #bdbdbd;
      text-align: center;
      padding: 24px 16px 28px;
      font-size: 13px;
      line-height: 1.7;
    }

    .site-footer p {
      margin: 0 0 6px;
    }

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

    .site-footer a {
      color: #fff;
      text-decoration: none;
      font-weight: 700;
    }

    .site-footer a:hover,
    .site-footer a:focus {
      color: var(--yellow);
      text-decoration: underline;
    }

    .sep {
      margin: 0 7px;
      color: #666;
    }

    @media (max-width: 780px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 40px 0 42px;
        text-align: center;
      }

      .hero h1 {
        max-width: 620px;
        margin: 0 auto;
        font-size: clamp(42px, 12vw, 68px);
      }

      .hero-copy {
        margin-left: auto;
        margin-right: auto;
        font-size: 18px;
      }

      .sender-chip {
        margin-left: auto;
        margin-right: auto;
      }

      .book-card {
        width: min(270px, 72vw);
        transform: rotate(1deg);
      }

      .content {
        padding: 44px 0 50px;
      }

      .mini-steps {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .hero-inner,
      .content {
        width: min(100% - 28px, 980px);
      }

      .hero-inner {
        padding-top: 30px;
        padding-bottom: 34px;
      }

      .eyebrow {
        font-size: 11px;
      }

      .hero h1 {
        font-size: 42px;
        line-height: .96;
        letter-spacing: -1.5px;
      }

      .hero-copy {
        font-size: 16px;
        line-height: 1.5;
      }

      .sender-chip a {
        font-size: 16px;
      }

      .book-card {
        width: min(220px, 68vw);
      }

      .section-title .check {
        width: 56px;
        height: 56px;
        font-size: 28px;
      }

      .section-title h2 {
        font-size: 34px;
      }

      .section-title p {
        font-size: 16px;
      }

      .email-box,
      .notice {
        padding: 20px 16px;
      }

      .email-box a {
        font-size: 21px;
      }

      .notice h3 {
        font-size: 21px;
      }

      .notice p {
        font-size: 15px;
      }
    }
  
/* Emphasize the destination in the main headline. */
.hero h1 .pink {
  color: #ffe2a6;
  text-shadow: 0 0 18px rgba(233, 189, 112, .16);
}
