:root {
  --paper: #f6f3e9;
  --ink: #193b33;
  --muted: #53665c;
  --accent: #ad4228;
  --line: #d9ddcf;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 6px;
}
.page {
  max-width: 1320px;
  margin: auto;
  padding: 0 56px;
}
.skip {
  position: absolute;
  left: 12px;
  top: -100px;
  background: var(--ink);
  color: white;
  padding: 12px;
  z-index: 5;
}
.skip:focus {
  top: 12px;
}
header {
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -1.1px;
}
.brand-dot {
  color: var(--accent);
  margin-left: -9px;
}
.nav-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.nav-link span {
  margin-left: 12px;
}
.hero {
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 70px 0 68px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 1.7px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.6;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -2.5px;
}
h1 {
  font-size: clamp(56px, 6.1vw, 82px);
  line-height: 1.04;
  margin: 25px 0;
}
h1 em {
  color: var(--accent);
  font-weight: 400;
}
.intro {
  max-width: 440px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 28px;
}
.button {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  padding: 17px 23px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.button:hover {
  background: #2f5747;
}
.launch-note {
  font-size: 12px;
  color: var(--muted);
  margin: 17px 0 0;
}
.art {
  background: #e6ebdb;
  border-radius: 160px 160px 12px 12px;
  padding: 44px 28px 22px;
  position: relative;
}
.art-top,
.art-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.art-top {
  padding: 0 25px;
  font-size: 8px;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.panda {
  display: block;
  width: 100%;
  height: auto;
  margin: 4px 0 0;
}
.art-bottom {
  border-top: 1px solid #c8d0bc;
  padding-top: 17px;
  font-family: Georgia, serif;
  font-size: 14px;
  font-style: italic;
}
.art-bottom span:last-child {
  font-size: 24px;
  color: var(--accent);
}
.occasion-strip {
  padding: 24px 0;
  border-block: 1px solid var(--line);
  display: flex;
  justify-content: space-around;
  gap: 16px;
  font-family: Georgia, serif;
  font-size: 17px;
}
.occasion-strip span:nth-child(even) {
  color: var(--accent);
}
.how {
  padding: 76px 0 80px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
}
h2 {
  font-size: 39px;
  line-height: 1.16;
  margin: 0;
  letter-spacing: -1.2px;
}
.section-heading h2 {
  width: 59%;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.steps article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.step-number {
  font-family: Georgia, serif;
  font-size: 16px;
  color: var(--accent);
}
h3 {
  font-size: 20px;
  letter-spacing: -0.4px;
  margin: 22px 0 11px;
}
.steps p,
.about-copy p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  padding: 46px;
  background: #e9eade;
  border-radius: 10px;
  margin-bottom: 70px;
}
.about .eyebrow {
  margin: 0 0 23px;
  font-size: 10px;
}
.about h2 {
  font-size: 36px;
}
.about-copy p + p {
  margin-top: 16px;
}
.about-copy strong {
  color: var(--ink);
}
.about-copy .availability {
  font-size: 13px;
  border-top: 1px solid #cdd2c2;
  padding-top: 18px;
}
.contact {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
}
.contact a {
  text-underline-offset: 4px;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-bottom: 33px;
}
.footer-brand {
  font-size: 24px;
}
footer p {
  font-size: 12px;
  color: var(--muted);
  margin: 10px 0;
}
.footer-right {
  text-align: right;
}
.footer-right a {
  font-size: 12px;
  text-underline-offset: 3px;
}
.privacy {
  padding: 25px 0 35px;
  border-top: 1px solid var(--line);
  max-width: 100%;
}
.privacy h2 {
  font:
    600 13px Arial,
    sans-serif;
  letter-spacing: 0;
}
.privacy p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 850px;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .page {
    padding: 0 30px;
  }
  .hero {
    gap: 25px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .art {
    padding: 35px 18px 20px;
  }
  .art-top {
    padding: 0 10px;
    font-size: 7px;
  }
  .about {
    gap: 30px;
    padding: 32px;
  }
  .about h2 {
    font-size: 31px;
  }
}
@media (max-width: 650px) {
  .page {
    padding: 0 22px;
  }
  header {
    height: 88px;
  }
  .brand {
    font-size: 23px;
    gap: 8px;
  }
  .brand img {
    width: 31px;
    height: 31px;
  }
  .nav-link {
    font-size: 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 42px 0 36px;
    gap: 34px;
  }
  .hero h1 {
    font-size: 61px;
    letter-spacing: -2px;
    margin: 23px 0;
  }
  .intro {
    font-size: 16px;
  }
  .art {
    max-width: 420px;
    width: 100%;
    margin: auto;
    padding-top: 35px;
  }
  .art-top {
    font-size: 8px;
    padding: 0 25px;
  }
  .occasion-strip {
    flex-wrap: wrap;
    font-size: 14px;
    gap: 12px 16px;
    line-height: 1.5;
  }
  .occasion-strip span:nth-child(4) {
    display: none;
  }
  .how {
    padding: 45px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading .eyebrow {
    margin-bottom: 18px;
  }
  .section-heading h2 {
    width: 100%;
    font-size: 33px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .steps article {
    padding-top: 20px;
  }
  h3 {
    margin-top: 12px;
  }
  .steps p {
    max-width: 440px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 38px;
    padding: 27px 23px;
  }
  .about h2 {
    font-size: 33px;
  }
  footer {
    align-items: flex-start;
  }
  .footer-right {
    padding-top: 3px;
  }
  .footer-brand {
    font-size: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}
