:root {
  color-scheme: light;
  --paper: #f2ebe5;
  --paper-deep: #e8ddd5;
  --ink: #27221d;
  --muted: #6f6257;
  --line: #d8cbc2;
  --coral: #c95f45;
  --blue: #417c92;
  --mint: #7cae8a;
  --lavender: #8d78ac;
  --yellow: #e8bd4c;
  --white: #fbf7f3;
  --shadow: 0 18px 45px rgba(39, 34, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(39, 34, 29, 0.1);
  background: rgba(242, 235, 229, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--yellow);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(201, 95, 69, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--coral);
  text-decoration: none;
  font-weight: 800;
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--mint);
}

.hero {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 44px;
  align-items: center;
  padding: 56px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  line-height: 1.06;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  font-family: "Comic Sans MS", "Marker Felt", ui-rounded, system-ui, sans-serif;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 630px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.mini-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-art {
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-art img {
  display: block;
  width: auto;
  max-width: min(100%, 430px);
  max-height: min(760px, calc(100vh - 120px));
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(39, 34, 29, 0.16));
}

.phone-scene {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  width: min(360px, 86vw);
  aspect-ratio: 9 / 18.4;
  border: 5px solid var(--ink);
  border-radius: 38px;
  background: #191713;
  box-shadow: var(--shadow);
  padding: 14px;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #f7f0ea;
  border: 2px solid rgba(255, 255, 255, 0.42);
  position: relative;
}

.mock-photo {
  height: 58%;
  margin: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(65, 124, 146, 0.2), rgba(232, 189, 76, 0.28)),
    linear-gradient(160deg, #f8d7a2 0 32%, #8bbba4 32% 58%, #eebc86 58% 100%);
  position: relative;
  overflow: hidden;
}

.mock-photo::before {
  content: "";
  position: absolute;
  left: 15%;
  top: 18%;
  width: 58%;
  height: 52%;
  border: 4px solid #fbf7f3;
  border-radius: 50% 46% 44% 52%;
  transform: rotate(-8deg);
}

.mock-photo::after {
  content: "tiny cafe day";
  position: absolute;
  right: 13px;
  bottom: 18px;
  padding: 6px 10px;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--coral);
  border-radius: 8px;
  font-family: "Comic Sans MS", "Marker Felt", ui-rounded, system-ui, sans-serif;
  font-weight: 800;
  transform: rotate(-3deg);
}

.annotation {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 3px 3px 0 rgba(39, 34, 29, 0.16);
}

.annotation.one {
  top: 80px;
  left: 4px;
  color: var(--blue);
  transform: rotate(-8deg);
}

.annotation.two {
  top: 210px;
  right: 2px;
  color: var(--coral);
  transform: rotate(7deg);
}

.annotation.three {
  top: 288px;
  left: 30px;
  color: var(--mint);
  transform: rotate(-3deg);
}

.template-strip {
  display: grid;
  gap: 10px;
  margin: 0 18px;
}

.template-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  font-weight: 850;
}

.template-pill span {
  color: var(--muted);
  font-size: 0.82rem;
}

.floating-sticker {
  position: absolute;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  color: var(--lavender);
  box-shadow: 5px 5px 0 var(--yellow);
}

.floating-sticker svg {
  width: 42px;
  height: 42px;
}

.floating-sticker.left {
  left: 0;
  top: 78px;
  transform: rotate(-14deg);
}

.floating-sticker.right {
  right: 0;
  bottom: 96px;
  color: var(--coral);
  transform: rotate(10deg);
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--paper-deep);
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head p,
.page-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 100%;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 5px 5px 0 rgba(65, 124, 146, 0.22);
}

.card:nth-child(2n) {
  box-shadow: 5px 5px 0 rgba(201, 95, 69, 0.2);
}

.card:nth-child(3n) {
  box-shadow: 5px 5px 0 rgba(124, 174, 138, 0.26);
}

.card p,
.card li {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #f6d785;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.feature-row strong {
  display: block;
  margin-bottom: 4px;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
}

.check {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #d7ead6;
  font-weight: 900;
}

.page-hero {
  padding: 72px 0 44px;
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.page-hero .section-inner {
  max-width: 900px;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.page-copy {
  max-width: 850px;
  padding: 54px 0 80px;
}

.page-copy h2 {
  margin-top: 42px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.page-copy h3 {
  margin-top: 26px;
}

.page-copy ul {
  padding-left: 22px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price {
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 950;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.callout {
  margin-top: 36px;
  padding: 24px;
  border: 2px dashed var(--ink);
  border-radius: 8px;
  background: var(--white);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #27221d;
  color: var(--white);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 254, 248, 0.78);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .phone-scene {
    min-height: 500px;
  }

  .hero-art {
    min-height: 500px;
  }

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .nav,
  .section-inner,
  .hero,
  .footer-inner {
    width: min(100% - 24px, 1120px);
  }

  .nav-links a {
    padding: 7px 8px;
    font-size: 0.9rem;
  }

  .button {
    width: 100%;
  }

  .phone {
    width: min(310px, 92vw);
  }

  .hero-art {
    min-height: 0;
  }

  .hero-art img {
    max-width: min(100%, 360px);
    max-height: 720px;
  }

  .floating-sticker {
    width: 64px;
    height: 64px;
  }

  .floating-sticker svg {
    width: 34px;
    height: 34px;
  }

  .section {
    padding: 56px 0;
  }
}
