:root {
  --ink: #172b3a;
  --paper: #f8e8c7;
  --paper-light: #fff8e8;
  --coral: #ed6a4a;
  --blue: #9dc8c8;
  --yellow: #f2c94c;
  --brown: #633a2c;
  --white: #fffdf7;
  --line: 2px solid var(--ink);
  --shadow: 7px 7px 0 var(--ink);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.55;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  min-height: 88px;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--paper-light);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 50% 50% 44% 44%;
  background: var(--coral);
  color: var(--paper-light);
  font-family: Georgia, serif;
  font-size: 27px;
  font-style: italic;
  box-shadow: 3px 3px 0 var(--ink);
}

.main-nav { display: flex; align-items: center; gap: clamp(16px, 3vw, 38px); }

.main-nav a,
.site-footer nav a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a { padding-block: 8px; border-bottom: 3px solid transparent; }
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a[aria-current="page"] { border-color: var(--coral); }

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 4vw;
  padding-block: 62px;
}

.eyebrow,
.card-kicker,
.story-meta,
.timeline time {
  margin: 0 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 { line-height: .98; letter-spacing: -.045em; }

.hero h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(68px, 8vw, 126px);
  font-weight: 400;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 34px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 15px 20px;
  border: var(--line);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .15s, box-shadow .15s;
}

.button:hover, .button:focus-visible { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }

.hero-art {
  position: relative;
  min-height: 500px;
  border: var(--line);
  overflow: hidden;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.sun {
  position: absolute;
  top: 45px;
  right: 55px;
  width: 125px;
  aspect-ratio: 1;
  border: var(--line);
  border-radius: 50%;
  background: var(--yellow);
}

.cat {
  position: absolute;
  left: 50%;
  bottom: -55px;
  width: 330px;
  height: 385px;
  border: var(--line);
  border-radius: 48% 48% 33% 33%;
  transform: translateX(-50%);
}

.cat-ginger { background: var(--coral); }

.cat-ear {
  position: absolute;
  top: -65px;
  width: 110px;
  height: 120px;
  border: var(--line);
  background: var(--coral);
  transform: rotate(45deg);
}

.cat-ear::after {
  content: "";
  position: absolute;
  inset: 25px;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.cat-ear-left { left: 20px; }
.cat-ear-right { right: 20px; }

.cat-eye {
  position: absolute;
  top: 128px;
  width: 27px;
  height: 39px;
  border-radius: 50%;
  background: var(--ink);
}

.cat-eye-left { left: 88px; }
.cat-eye-right { right: 88px; }

.cat-nose {
  position: absolute;
  top: 192px;
  left: 50%;
  width: 19px;
  height: 14px;
  border-radius: 50% 50% 60% 60%;
  background: var(--ink);
  transform: translateX(-50%);
}

.cat-whiskers,
.cat-whiskers::before {
  position: absolute;
  content: "";
  top: 222px;
  width: 95px;
  height: 2px;
  background: var(--ink);
}

.cat-whiskers { left: 22px; transform: rotate(7deg); box-shadow: 2px 18px 0 var(--ink); }
.cat-whiskers::before { left: 191px; transform: rotate(-14deg); box-shadow: -2px 18px 0 var(--ink); }

.hero-note {
  position: absolute;
  padding: 7px 13px;
  border: var(--line);
  background: var(--paper-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.note-one { top: 75px; left: 28px; transform: rotate(-7deg); }
.note-two { right: 25px; bottom: 50px; transform: rotate(6deg); }

.ticker {
  padding: 13px 24px;
  border-block: var(--line);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .09em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span { padding-inline: 22px; color: var(--yellow); }

.section-block { padding-block: 110px; }

.section-heading {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: end;
  gap: 40px;
}

.section-heading h2,
.fact-intro h2,
.care-intro h2,
.routine-heading h2,
.note-card h2,
.callout h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 400;
}

.section-heading > p { max-width: 420px; margin-bottom: 5px; font-size: 20px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-card {
  min-height: 390px;
  padding: 28px;
  border: var(--line);
  display: flex;
  flex-direction: column;
  box-shadow: 5px 5px 0 var(--ink);
}

.feature-card:nth-child(2) { transform: translateY(24px); }
.card-coral { background: var(--coral); }
.card-blue { background: var(--blue); }
.card-cream { background: var(--paper); }
.issue-number { align-self: flex-end; font-family: Arial, sans-serif; font-size: 13px; font-weight: 900; }
.feature-card h3 { max-width: 290px; margin-block: 25px 20px; font-size: 42px; font-weight: 400; }
.feature-card p:not(.card-kicker) { font-size: 17px; }
.text-link { margin-top: auto; font-family: Arial, sans-serif; font-size: 13px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; text-underline-offset: 4px; }

.quote-band {
  padding: 105px 24px;
  border-block: var(--line);
  background: var(--coral);
  text-align: center;
}

.quote-band blockquote { max-width: 950px; margin: 0 auto; }
.quote-band p { margin-bottom: 24px; font-size: clamp(42px, 6vw, 80px); line-height: 1.05; letter-spacing: -.04em; }
.quote-band footer { font-family: Arial, sans-serif; font-size: 13px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.fact-section { padding-block: 110px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.fact-list { margin: 0; }
.fact-list > div { padding: 24px 0; border-top: var(--line); display: grid; grid-template-columns: 65px 1fr; gap: 24px; }
.fact-list > div:last-child { border-bottom: var(--line); }
.fact-list dt { font-family: Arial, sans-serif; font-size: 14px; font-weight: 900; }
.fact-list dd { margin: 0; display: grid; grid-template-columns: .7fr 1.3fr; gap: 25px; }
.fact-list strong { font-size: 21px; line-height: 1.2; }
.fact-list span { font-size: 16px; }

.site-footer {
  min-height: 220px;
  padding: 48px max(24px, calc((100vw - 1180px) / 2));
  border-top: var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 32px;
  background: var(--ink);
  color: var(--paper-light);
}

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand > div { display: flex; flex-direction: column; }
.footer-brand strong { font-family: Arial, sans-serif; font-size: 20px; }
.footer-brand span:not(.brand-mark) { font-size: 14px; opacity: .72; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 28px; }
.site-footer nav a:hover, .site-footer nav a:focus-visible { color: var(--yellow); }
.site-footer > p { grid-column: 1 / -1; margin: 25px 0 0; border-top: 1px solid rgba(255,255,255,.25); padding-top: 20px; font-size: 14px; opacity: .72; }

/* Inner pages */
.page-hero {
  margin-top: 48px;
  margin-bottom: 95px;
  padding: clamp(44px, 7vw, 90px);
  border: var(--line);
  box-shadow: var(--shadow);
}

.page-hero-coral { background: var(--coral); }
.page-hero-blue { background: var(--blue); }
.page-hero h1 { max-width: 900px; margin-bottom: 30px; font-size: clamp(64px, 9vw, 126px); font-weight: 400; }
.page-hero > p:last-child { max-width: 660px; margin-bottom: 0; font-size: 22px; }

.profiles { display: grid; gap: 34px; padding-bottom: 100px; }
.profile { min-height: 430px; border: var(--line); display: grid; grid-template-columns: .8fr 1.2fr; box-shadow: 5px 5px 0 var(--ink); }
.profile-portrait { position: relative; min-height: 360px; border-right: var(--line); display: grid; place-items: center; overflow: hidden; }
.profile-ginger .profile-portrait { background: var(--coral); }
.profile-ink .profile-portrait { background: var(--ink); color: var(--paper); }
.profile-cream .profile-portrait { background: var(--yellow); }
.mini-cat {
  width: 230px;
  height: 250px;
  padding-top: 88px;
  border: var(--line);
  border-radius: 48% 48% 36% 36%;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 38px;
  text-align: center;
}
.mini-cat::before, .mini-cat::after { content: ""; position: absolute; top: 77px; width: 80px; height: 80px; border: var(--line); background: var(--paper); transform: rotate(45deg); z-index: 0; }
.mini-cat::before { left: calc(50% - 106px); }
.mini-cat::after { right: calc(50% - 106px); }
.profile-copy { padding: clamp(32px, 6vw, 70px); }
.profile-copy h2 { margin-bottom: 18px; font-size: clamp(52px, 7vw, 88px); font-weight: 400; }
.profile-lead { max-width: 620px; font-size: 23px; line-height: 1.35; }
.profile-copy > p:last-child { max-width: 700px; font-size: 17px; }
.tag-list { margin: 25px 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.tag-list li { padding: 5px 10px; border: 1.5px solid currentColor; border-radius: 99px; font-family: Arial, sans-serif; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.callout { margin-bottom: 110px; padding: 35px; border: var(--line); display: grid; grid-template-columns: 70px 1fr 1fr; align-items: center; gap: 30px; background: var(--blue); box-shadow: var(--shadow); }
.callout-symbol { font-size: 55px; text-align: center; }
.callout h2 { font-size: clamp(36px, 4vw, 55px); }
.callout > p { margin: 0; }

.care-grid { padding-bottom: 110px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 8vw; }
.care-intro { position: sticky; top: 30px; align-self: start; }
.care-intro h2 { margin-bottom: 30px; }
.care-list { margin: 0; padding: 0; list-style: none; counter-reset: care; }
.care-list li { padding: 28px 0; border-top: var(--line); display: grid; grid-template-columns: 65px 1fr; gap: 20px; }
.care-list li:last-child { border-bottom: var(--line); }
.care-number { font-family: Arial, sans-serif; font-size: 13px; font-weight: 900; }
.care-list h3 { margin-bottom: 10px; font-size: 34px; font-weight: 400; }
.care-list p { margin: 0; font-size: 17px; }

.routine-band { padding-block: 100px; border-block: var(--line); background: var(--yellow); }
.routine-heading { margin-bottom: 50px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); border: var(--line); background: var(--paper-light); box-shadow: var(--shadow); }
.timeline article { min-height: 245px; padding: 28px; }
.timeline article + article { border-left: var(--line); }
.timeline time { display: inline-block; margin-bottom: 45px; color: var(--coral); }
.timeline h3 { margin-bottom: 12px; font-size: 29px; font-weight: 400; }
.timeline p { margin: 0; font-size: 16px; }

.note-card { margin-block: 100px; padding: 45px; border: var(--line); display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 40px; background: var(--coral); box-shadow: var(--shadow); }
.note-cat { font-family: Arial, sans-serif; font-size: clamp(28px, 4vw, 55px); text-align: center; white-space: nowrap; }
.note-card h2 { margin-bottom: 18px; font-size: clamp(40px, 5vw, 64px); }
.note-card p:last-child { margin: 0; }

.story-hero { min-height: 650px; padding-block: 90px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 8vw; }
.story-hero h1 { margin: 0; font-size: clamp(72px, 10vw, 138px); font-weight: 400; }
.story-intro { margin: 0 0 15px; padding-top: 25px; border-top: var(--line); font-size: 23px; }
.story-list { padding-bottom: 100px; }
.story { padding-block: 90px; border-top: var(--line); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 8vw; }
.story-right .story-art { order: 2; }
.story-art { position: relative; min-height: 470px; border: var(--line); overflow: hidden; box-shadow: var(--shadow); }
.story-art span { position: absolute; }
.art-window { background: var(--blue); }
.art-window::before { content: ""; position: absolute; inset: 50px; border: 12px solid var(--paper-light); box-shadow: inset 0 0 0 2px var(--ink), 0 0 0 2px var(--ink); }
.art-window::after { content: ""; position: absolute; left: 50%; top: 50px; bottom: 50px; width: 2px; background: var(--ink); }
.art-window span { left: 37%; bottom: 50px; width: 105px; height: 160px; border: var(--line); border-radius: 55% 55% 10% 10%; background: var(--ink); }
.art-window span::before, .art-window span::after { content: ""; position: absolute; top: -20px; width: 45px; height: 45px; background: var(--ink); transform: rotate(45deg); }
.art-window span::before { left: 5px; }.art-window span::after { right: 5px; }
.art-chair { background: var(--coral); }
.art-chair::before { content: ""; position: absolute; left: 12%; right: 12%; bottom: 55px; height: 210px; border: var(--line); border-radius: 50% 50% 8% 8%; background: var(--paper); }
.art-chair span { left: 50%; bottom: 60px; width: 180px; height: 265px; border: var(--line); border-radius: 48% 48% 15% 15%; background: var(--yellow); transform: translateX(-50%); }
.art-chair span::after { content: "● ᴥ ●"; position: absolute; top: 80px; left: 0; right: 0; font-family: Arial, sans-serif; font-size: 26px; text-align: center; }
.art-moon { background: var(--ink); }
.art-moon::before { content: ""; position: absolute; top: 48px; right: 58px; width: 130px; aspect-ratio: 1; border-radius: 50%; background: var(--yellow); }
.art-moon span { left: 15%; bottom: -40px; width: 250px; height: 315px; border-radius: 50% 50% 0 0; background: var(--paper-light); }
.art-moon span::before, .art-moon span::after { content: ""; position: absolute; top: -25px; width: 85px; height: 85px; background: var(--paper-light); transform: rotate(45deg); }
.art-moon span::before { left: 20px; }.art-moon span::after { right: 20px; }
.story-meta { color: var(--coral); }
.story-copy h2 { margin-bottom: 28px; font-size: clamp(48px, 6vw, 74px); font-weight: 400; }
.story-copy p:not(.story-meta) { font-size: 18px; }
.drop-cap::first-letter { float: left; margin: 5px 7px 0 0; color: var(--coral); font-size: 72px; line-height: .75; }
.end-mark { padding-bottom: 100px; display: flex; align-items: center; justify-content: center; gap: 25px; font-family: Arial, sans-serif; font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.end-mark b { color: var(--coral); font-size: 25px; }

/* 404 */
.not-found-page { min-height: 100vh; background: var(--blue); }
.not-found-page .site-header { background: transparent; }
.not-found { min-height: calc(100vh - 90px); padding-block: 50px 80px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.error-art { display: flex; align-items: center; justify-content: center; margin-bottom: 22px; font-family: Arial, sans-serif; font-size: clamp(110px, 24vw, 260px); font-weight: 900; line-height: .8; letter-spacing: -.1em; }
.error-zero { width: .82em; aspect-ratio: .78; border: .08em solid var(--ink); border-radius: 48%; display: grid; place-items: center; background: var(--coral); }
.error-zero i { font-size: .15em; font-style: normal; letter-spacing: 0; }
.not-found h1 { margin-bottom: 18px; font-size: clamp(44px, 6vw, 76px); font-weight: 400; }
.not-found > p:not(.eyebrow) { max-width: 600px; margin-bottom: 30px; font-size: 20px; }

:focus-visible { outline: 3px solid var(--ink); outline-offset: 4px; }

@media (max-width: 820px) {
  .site-header { align-items: flex-start; flex-direction: column; gap: 12px; }
  .main-nav { width: 100%; gap: 10px 20px; overflow-x: auto; }
  .hero, .section-heading, .fact-section, .profile, .care-grid, .note-card, .story-hero, .story { grid-template-columns: 1fr; }
  .hero { padding-block: 45px 70px; }
  .hero-art { min-height: 430px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card:nth-child(2) { transform: none; }
  .fact-list dd { grid-template-columns: 1fr; gap: 6px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > p { grid-column: auto; }
  .profile-portrait { border-right: 0; border-bottom: var(--line); }
  .callout { grid-template-columns: 50px 1fr; }
  .callout > p { grid-column: 1 / -1; }
  .care-intro { position: static; }
  .timeline { grid-template-columns: 1fr; }
  .timeline article + article { border-left: 0; border-top: var(--line); }
  .routine-heading { align-items: flex-start; flex-direction: column; }
  .story-hero { min-height: auto; }
  .story { gap: 45px; }
  .story-right .story-art { order: 0; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .shell { width: min(100% - 28px, 1180px); }
  .site-header { padding-inline: 14px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 40px; }
  .main-nav a { font-size: 11px; }
  .hero h1 { font-size: 60px; }
  .hero-art { min-height: 360px; }
  .cat { width: 245px; height: 300px; }
  .cat-ear { width: 80px; height: 90px; top: -48px; }
  .cat-eye { top: 100px; }
  .cat-eye-left { left: 67px; }.cat-eye-right { right: 67px; }
  .cat-nose { top: 153px; }.cat-whiskers, .cat-whiskers::before { display: none; }
  .section-block, .fact-section { padding-block: 75px; }
  .section-heading { margin-bottom: 32px; }
  .feature-card { min-height: 330px; }
  .quote-band { padding-block: 75px; }
  .fact-list > div { grid-template-columns: 38px 1fr; gap: 10px; }
  .site-footer nav { gap: 15px; }
  .page-hero { width: calc(100% - 28px); margin-top: 28px; margin-bottom: 65px; padding: 35px 24px; }
  .page-hero h1 { font-size: 54px; }
  .profile-copy { padding: 30px 24px; }
  .profile-copy h2 { font-size: 48px; }
  .profile-portrait { min-height: 300px; }
  .callout { padding: 25px 20px; }
  .note-card { padding: 30px 22px; }
  .note-cat { white-space: normal; }
  .story-hero { padding-block: 65px; }
  .story-art { min-height: 360px; }
  .story { padding-block: 65px; }
  .error-art { font-size: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
