* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
  --ink: #111111;
  --muted: #6f6f6f;
  --line: #dedede;
  --soft: #f5f5f3;
  --max: 1320px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; }
.site-header {
  height: 84px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
}
.wordmark-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}
nav { display: flex; gap: 28px; }
nav a {
  text-decoration: none;
  font-size: 13px;
  color: #333;
}
nav a:hover { color: #000; }
.hero {
  max-width: var(--max);
  margin: 0 auto;
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 7vw;
  align-items: center;
  padding: 8vw 4vw;
}
.eyebrow, .mini-label {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
}
.hero h1, .section h2, .closing h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -.035em;
}
.hero h1 {
  margin: 18px 0 28px;
  font-size: clamp(58px, 7.2vw, 118px);
  line-height: .9;
}
.hero h1 em { font-weight: 400; }
.hero-intro {
  max-width: 660px;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.45;
  color: #333;
}
.text-link {
  display: inline-flex;
  gap: 14px;
  margin-top: 24px;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 6px;
  font-weight: 700;
  font-size: 14px;
}
.hero-photo img {
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}
.statement-band {
  background: #111;
  color: #fff;
  padding: 10vw 7vw;
}
.statement-band p {
  max-width: 1140px;
  margin: 0 auto 32px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 4vw, 66px);
  line-height: 1.05;
  letter-spacing: -.025em;
}
.statement-band p:nth-child(2) { color: #b7b7b7; }
.statement-band p:nth-child(3) { color: #6f6f6f; margin-bottom: 0; }
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10vw 4vw;
}
.section-kicker {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 7vw;
}
.section-kicker span {
  font-family: Georgia, serif;
  font-size: 18px;
  color: #999;
}
.section-kicker p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
}
.executive-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 10vw;
}
.section h2 {
  margin: 0;
  font-size: clamp(50px, 6vw, 92px);
  line-height: .96;
}
.executive-copy .lead, .author-heading p, .human-heading p {
  margin-top: 40px;
  max-width: 780px;
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.45;
}
.executive-copy > p:not(.lead) {
  max-width: 690px;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}
.experience { padding-top: 8px; }
.role {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.role strong { display: block; font-size: 16px; margin-bottom: 6px; }
.role span { color: var(--muted); font-size: 14px; }
.role-note { color: var(--muted); font-size: 13px; line-height: 1.5; margin-top: 20px; }
.pullquote {
  margin-top: 10vw;
  padding: 8vw 6vw;
  background: var(--soft);
}
.pullquote p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 90px);
  line-height: 1;
  letter-spacing: -.03em;
}
.author { border-top: 1px solid var(--line); }
.author-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 9vw;
}
.author-heading p { margin: 0; }
.featured-book {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 7vw;
  align-items: center;
  margin-bottom: 10vw;
}
.book-art img { background: #fff; }
.book-copy h3, .book-card h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -.02em;
}
.book-copy h3 {
  font-size: clamp(42px, 5vw, 76px);
  margin: 12px 0 24px;
}
.book-copy > p:not(.mini-label) {
  font-size: 20px;
  line-height: 1.6;
  color: #444;
}
.book-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
}
.book-card img {
  aspect-ratio: 1.25/1;
  object-fit: contain;
  margin-bottom: 24px;
}
.book-card h3 { font-size: 36px; margin: 8px 0 12px; }
.book-card p:not(.mini-label) { color: #555; line-height: 1.6; max-width: 520px; }
.human {
  max-width: none;
  padding-left: 4vw;
  padding-right: 4vw;
  border-top: 1px solid var(--line);
}
.human .section-kicker, .human-heading, .human-note {
  max-width: calc(var(--max) - 8vw);
  margin-left: auto;
  margin-right: auto;
}
.human-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 7vw;
}
.human-heading p { margin: 0; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 20vw;
  gap: 12px;
  max-width: 1500px;
  margin: 0 auto;
}
.photo { margin: 0; overflow: hidden; background: #eee; }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.photo:hover img { transform: scale(1.025); }
.photo.tall { grid-row: span 2; }
.photo.wide { grid-column: span 2; }
.human-note {
  margin-top: 5vw;
  font-family: Georgia, serif;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.22;
}
.closing {
  background: #111;
  color: #fff;
  padding: 11vw 4vw;
}
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing h2 {
  font-size: clamp(52px, 7vw, 106px);
  line-height: .95;
  margin: 18px 0 34px;
}
.closing-inner > p:not(.eyebrow) {
  max-width: 720px;
  color: #cfcfcf;
  font-size: 21px;
  line-height: 1.55;
}
.closing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 48px;
}
.closing-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid #555;
  padding-bottom: 5px;
}
footer {
  display: flex;
  justify-content: space-between;
  padding: 28px 4vw;
  font-size: 12px;
  color: #666;
  border-top: 1px solid #222;
  background: #111;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { height: 70px; }
  nav a:not(:last-child) { display: none; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 80px;
  }
  .hero-photo { max-width: 520px; }
  .executive-grid, .author-heading, .featured-book, .human-heading {
    grid-template-columns: 1fr;
  }
  .author-heading p, .human-heading p { margin-top: 24px; }
  .book-pair { grid-template-columns: 1fr; gap: 80px; }
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 48vw;
  }
  .photo.wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .wordmark { font-size: 11px; }
  .site-header { padding: 0 20px; }
  nav { gap: 14px; }
  .hero, .section { padding-left: 22px; padding-right: 22px; }
  .hero h1 { font-size: 17vw; }
  .statement-band { padding: 90px 22px; }
  .section { padding-top: 100px; padding-bottom: 100px; }
  .photo-grid { gap: 7px; }
  .closing { padding: 110px 22px; }
  footer { padding: 24px 22px; flex-direction: column; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}




/* Hero profile treatment — Seth-inspired baseline */
.hero-photo {
  position: relative;
  padding: 26px;
  background: #d95f2b;
  border: 3px solid #8fb7ff;
  border-radius: 44px;
  transform: rotate(-2.2deg);
  overflow: visible;
}

/* Keep the photograph visually upright while the colored frame tilts */
.hero-photo img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px;
  transform: rotate(2.2deg);
  background: #fff;
}

/* Remove the previous decorative circles entirely */
.hero-photo::before,
.hero-photo::after {
  content: none !important;
}

/* Responsive refinements */
@media (max-width: 900px) {
  .hero-photo {
    padding: 22px;
    border-radius: 36px;
    transform: rotate(-1.8deg);
  }

  .hero-photo img {
    border-radius: 26px;
    transform: rotate(1.8deg);
  }
}

@media (max-width: 560px) {
  .hero-photo {
    padding: 16px;
    border-width: 2px;
    border-radius: 30px;
    transform: rotate(-1.4deg);
  }

  .hero-photo img {
    border-radius: 22px;
    transform: rotate(1.4deg);
  }
}


/* Hero profile sizing pass — larger and more confident */
.hero {
  grid-template-columns: 1.05fr .95fr;
  gap: 5vw;
}

.hero-photo {
  width: min(100%, 560px);
  justify-self: end;
  padding: 30px;
}

@media (min-width: 1200px) {
  .hero {
    max-width: 1420px;
  }

  .hero-photo {
    width: 560px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    width: min(100%, 540px);
    justify-self: start;
  }
}


/* Hero profile sizing refinement — one step smaller */
.hero {
  grid-template-columns: 1.1fr .9fr;
  gap: 5.5vw;
}

.hero-photo {
  width: min(100%, 510px);
  padding: 28px;
}

@media (min-width: 1200px) {
  .hero-photo {
    width: 510px;
  }
}

@media (max-width: 900px) {
  .hero-photo {
    width: min(100%, 500px);
  }
}


/* Hero profile sizing refinement — one more small step down */
.hero {
  grid-template-columns: 1.14fr .86fr;
  gap: 5.75vw;
}

.hero-photo {
  width: min(100%, 475px);
  padding: 27px;
}

@media (min-width: 1200px) {
  .hero-photo {
    width: 475px;
  }
}

@media (max-width: 900px) {
  .hero-photo {
    width: min(100%, 470px);
  }
}


/* Hero profile sizing refinement — another small step down */
.hero {
  grid-template-columns: 1.17fr .83fr;
  gap: 6vw;
}

.hero-photo {
  width: min(100%, 440px);
  padding: 26px;
}

@media (min-width: 1200px) {
  .hero-photo {
    width: 440px;
  }
}

@media (max-width: 900px) {
  .hero-photo {
    width: min(100%, 440px);
  }
}


/* Hero profile sizing refinement — 425px */
.hero {
  grid-template-columns: 1.185fr .815fr;
  gap: 6.1vw;
}

.hero-photo {
  width: min(100%, 425px);
  padding: 26px;
}

@media (min-width: 1200px) {
  .hero-photo {
    width: 425px;
  }
}

@media (max-width: 900px) {
  .hero-photo {
    width: min(100%, 425px);
  }
}


/* Hero profile color refinement — match site text */
.hero-photo {
  background: var(--ink);
}


/* Author section refinement — all three books on one row */
@media (min-width: 901px) {
  .author {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 4vw;
  }

  .author > .section-kicker,
  .author > .author-heading {
    grid-column: 1 / -1;
  }

  .author > .featured-book {
    grid-column: 1;
    display: block;
    margin: 0;
  }

  .author > .book-pair {
    grid-column: 2 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4vw;
  }

  .featured-book .book-art img,
  .book-card img {
    width: 100%;
    height: 360px;
    object-fit: contain;
    margin-bottom: 24px;
  }

  .featured-book .book-copy h3,
  .book-card h3 {
    font-size: 32px;
    line-height: 1.08;
    margin: 8px 0 12px;
  }

  .featured-book .book-copy > p:not(.mini-label),
  .book-card p:not(.mini-label) {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
  }

  .featured-book .text-link {
    margin-top: 14px;
  }
}


/* Author section — The Impossible Novel coming soon */
.coming-soon-book {
  grid-column: 1 / -1;
  margin-top: 7vw;
  padding-top: 5vw;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 5vw;
  align-items: center;
}

.coming-soon-mark {
  width: 230px;
  height: 300px;
  border-radius: 8px;
  background: var(--ink);
  display: grid;
  place-items: center;
  transform: rotate(-2deg);
}

.coming-soon-question {
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 150px;
  line-height: 1;
  transform: rotate(2deg);
}

.coming-soon-copy {
  max-width: 650px;
}

.coming-soon-copy h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -.03em;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  margin: 12px 0 24px;
}

.coming-soon-line {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  color: #444;
  margin: 0;
}

@media (max-width: 900px) {
  .coming-soon-book {
    grid-template-columns: 160px 1fr;
    gap: 30px;
    margin-top: 80px;
    padding-top: 60px;
  }

  .coming-soon-mark {
    width: 160px;
    height: 210px;
  }

  .coming-soon-question {
    font-size: 105px;
  }
}

@media (max-width: 560px) {
  .coming-soon-book {
    grid-template-columns: 1fr;
  }

  .coming-soon-mark {
    width: 145px;
    height: 190px;
  }
}


/* The Impossible Novel — centered feature + supplied question-mark artwork */
.coming-soon-book {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 34px;
}

.coming-soon-mark {
  width: 230px;
  height: 230px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  transform: none;
}

.coming-soon-question-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 26px;
}

.coming-soon-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 900px) {
  .coming-soon-book {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .coming-soon-mark {
    width: 190px;
    height: 190px;
  }
}

@media (max-width: 560px) {
  .coming-soon-mark {
    width: 160px;
    height: 160px;
  }
}


/* Human section refinement — align intro copy with heading top */
.human-heading {
  align-items: start;
}

.human-heading > p {
  align-self: start;
  margin-top: 0;
}


/* Human section — loose editorial photo sequence */
.human-editorial-photos {
  margin-top: clamp(70px, 9vw, 130px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 34px;
  gap: 18px;
  align-items: start;
}

.human-editorial-photos .photo {
  margin: 0;
  overflow: hidden;
  background: #f5f5f3;
  height: 100%;
}

.human-editorial-photos .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Deliberately irregular placements: more white space, less "gallery grid" */
.human-editorial-photos .photo:nth-child(1) {
  grid-column: 1 / span 5;
  grid-row: 1 / span 10;
  transform: rotate(-0.7deg);
}

.human-editorial-photos .photo:nth-child(2) {
  grid-column: 8 / span 3;
  grid-row: 4 / span 7;
  transform: rotate(0.8deg);
}

.human-editorial-photos .photo:nth-child(3) {
  grid-column: 3 / span 3;
  grid-row: 13 / span 7;
  transform: rotate(0.6deg);
}

.human-editorial-photos .photo:nth-child(4) {
  grid-column: 7 / span 5;
  grid-row: 15 / span 10;
  transform: rotate(-0.5deg);
}

.human-editorial-photos .photo:nth-child(5) {
  grid-column: 1 / span 4;
  grid-row: 24 / span 9;
  transform: rotate(-0.6deg);
}

.human-editorial-photos .photo:nth-child(6) {
  grid-column: 6 / span 3;
  grid-row: 28 / span 7;
  transform: rotate(0.7deg);
}

.human-editorial-photos .photo:nth-child(n+7) {
  display: none;
}

/* Remove legacy grid sizing from the Human photos */
.human-editorial-photos .wide,
.human-editorial-photos .tall {
  grid-column: auto;
  grid-row: auto;
}

@media (max-width: 900px) {
  .human-editorial-photos {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-auto-rows: 30px;
    gap: 14px;
  }

  .human-editorial-photos .photo:nth-child(1) {
    grid-column: 1 / span 5;
    grid-row: 1 / span 9;
  }

  .human-editorial-photos .photo:nth-child(2) {
    grid-column: 6 / span 3;
    grid-row: 4 / span 6;
  }

  .human-editorial-photos .photo:nth-child(3) {
    grid-column: 2 / span 3;
    grid-row: 12 / span 6;
  }

  .human-editorial-photos .photo:nth-child(4) {
    grid-column: 5 / span 4;
    grid-row: 14 / span 9;
  }

  .human-editorial-photos .photo:nth-child(5) {
    grid-column: 1 / span 4;
    grid-row: 23 / span 8;
  }

  .human-editorial-photos .photo:nth-child(6) {
    grid-column: 5 / span 3;
    grid-row: 27 / span 6;
  }
}

@media (max-width: 560px) {
  .human-editorial-photos {
    display: block;
    margin-top: 60px;
  }

  .human-editorial-photos .photo {
    height: auto;
    margin-bottom: 38px;
    transform: none !important;
  }

  .human-editorial-photos .photo img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .human-editorial-photos .photo:nth-child(even) {
    width: 72%;
    margin-left: auto;
  }

  .human-editorial-photos .photo:nth-child(odd) {
    width: 88%;
  }
}


/* Human section v2 — life chapters */
.human-life {
  margin-top: clamp(80px, 10vw, 150px);
}

.life-chapter {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  margin-bottom: clamp(120px, 15vw, 210px);
}

.life-chapter:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}

.life-copy {
  max-width: 500px;
}

.life-copy .mini-label {
  margin-bottom: 18px;
}

.life-copy h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 0 0 24px;
}

.life-copy > p:last-child {
  max-width: 430px;
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

.life-photo {
  margin: 0;
  overflow: hidden;
}

.life-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.life-home .life-photo {
  height: 500px;
  transform: rotate(.5deg);
}

.life-photo-pair {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: end;
}

.life-photo-pair .life-photo:first-child {
  height: 430px;
  transform: rotate(-.6deg);
}

.life-photo-pair .life-photo:last-child {
  height: 300px;
  transform: translateY(42px) rotate(.8deg);
}

.life-people .life-photo,
.life-food .life-photo,
.life-seen .life-photo {
  height: 460px;
}

.life-people .life-photo { transform: rotate(-.5deg); }
.life-food .life-photo { transform: rotate(.6deg); }
.life-seen .life-photo { transform: rotate(-.4deg); }

.human-signoff {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.03em;
  text-align: center;
  margin: 30px auto 10px;
}

@media (max-width: 800px) {
  .life-chapter,
  .life-chapter:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 110px;
  }

  .life-people .life-photo,
  .life-seen .life-photo {
    order: 2;
  }

  .life-people .life-copy,
  .life-seen .life-copy {
    order: 1;
  }

  .life-home .life-photo,
  .life-people .life-photo,
  .life-food .life-photo,
  .life-seen .life-photo {
    height: min(110vw, 520px);
  }
}


/* Human life chapters v2 — consistent alternating image/copy rhythm */
.life-home .life-photo {
  order: 1;
}
.life-home .life-copy {
  order: 2;
}

@media (max-width: 800px) {
  .life-home .life-copy {
    order: 1;
  }
  .life-home .life-photo {
    order: 2;
  }
}


/* Home & Everyday — three-photo life story */
.life-home {
  align-items: center;
}

.home-photo-story {
  position: relative;
  padding: 0 72px 90px 0;
}

.life-home .home-main-photo {
  height: auto;
  aspect-ratio: 1 / 1;
  transform: rotate(-0.45deg);
}

.home-main-photo img {
  object-position: center;
}

.home-supporting-photos {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 14px;
  align-items: flex-end;
}

.life-home .home-small-photo {
  width: 145px;
  height: 145px;
  background: #fff;
  padding: 7px;
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}

.life-home .home-small-photo:first-child {
  transform: rotate(1.4deg);
}

.life-home .home-small-photo:last-child {
  width: 125px;
  height: 160px;
  transform: translateY(18px) rotate(-1deg);
}

.life-detail {
  margin-top: 34px !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px !important;
  line-height: 1.55 !important;
  color: #333 !important;
}

.life-detail span {
  display: block;
  margin-bottom: 7px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #777;
}

@media (max-width: 900px) {
  .home-photo-story {
    padding-right: 50px;
  }

  .life-home .home-small-photo {
    width: 120px;
    height: 120px;
  }

  .life-home .home-small-photo:last-child {
    width: 105px;
    height: 135px;
  }
}

@media (max-width: 800px) {
  .home-photo-story {
    order: 2;
    padding: 0 40px 70px 0;
  }

  .life-home .life-copy {
    order: 1;
  }
}

@media (max-width: 520px) {
  .home-photo-story {
    padding: 0 24px 62px 0;
  }

  .life-home .home-small-photo {
    width: 92px;
    height: 92px;
    padding: 5px;
  }

  .life-home .home-small-photo:last-child {
    width: 82px;
    height: 108px;
  }
}

.life-animals{align-items:center}.animals-photo-story{position:relative;padding:0 0 92px 72px}
.life-animals .animals-main-photo{height:auto;aspect-ratio:4/5;transform:rotate(.45deg)}
.animals-main-photo img{object-position:center}.animals-supporting-photos{position:absolute;left:0;bottom:0;display:flex;gap:14px;align-items:flex-end}
.life-animals .animals-small-photo{background:#fff;padding:7px;box-shadow:0 8px 28px rgba(0,0,0,.08)}
.life-animals .animals-dog-photo{width:145px;height:145px;transform:rotate(-1.35deg)}
.life-animals .animals-chickens-photo{width:125px;height:160px;transform:translateY(18px) rotate(1deg)}
@media(max-width:900px){.animals-photo-story{padding-left:50px}.life-animals .animals-dog-photo{width:120px;height:120px}.life-animals .animals-chickens-photo{width:105px;height:135px}}
@media(max-width:800px){.life-animals .life-copy{order:1}.animals-photo-story{order:2;padding:0 0 70px 40px}}
@media(max-width:520px){.animals-photo-story{padding:0 0 62px 24px}.life-animals .animals-dog-photo{width:92px;height:92px;padding:5px}.life-animals .animals-chickens-photo{width:82px;height:108px;padding:5px}}

/* People & Good Times — three-photo life story, image-left chapter */
.life-people{align-items:center}
.people-photo-story{position:relative;padding:0 72px 92px 0}
.life-people .people-main-photo{height:auto;aspect-ratio:4/3;transform:rotate(-.45deg)}
.people-main-photo img{object-position:center}
.people-supporting-photos{position:absolute;right:0;bottom:0;display:flex;gap:14px;align-items:flex-end}
.life-people .people-small-photo{background:#fff;padding:7px;box-shadow:0 8px 28px rgba(0,0,0,.08)}
.life-people .people-race-photo{width:145px;height:145px;transform:rotate(1.35deg)}
.life-people .people-bocce-photo{width:125px;height:160px;transform:translateY(18px) rotate(-1deg)}
@media(max-width:900px){.people-photo-story{padding-right:50px}.life-people .people-race-photo{width:120px;height:120px}.life-people .people-bocce-photo{width:105px;height:135px}}
@media(max-width:800px){.life-people .life-copy{order:1}.people-photo-story{order:2;padding:0 40px 70px 0}}
@media(max-width:520px){.people-photo-story{padding:0 24px 62px 0}.life-people .people-race-photo{width:92px;height:92px;padding:5px}.life-people .people-bocce-photo{width:82px;height:108px;padding:5px}}
.life-food{align-items:center}.food-photo-story{position:relative;padding:0 0 92px 72px}.life-food .food-main-photo{height:auto;aspect-ratio:1/1;transform:rotate(.45deg)}.food-main-photo img{object-position:center}.food-supporting-photos{position:absolute;left:0;bottom:0;display:flex;gap:14px;align-items:flex-end}.life-food .food-small-photo{background:#fff;padding:7px;box-shadow:0 8px 28px rgba(0,0,0,.08)}.life-food .food-dessert-photo{width:145px;height:145px;transform:rotate(-1.35deg)}.life-food .food-sushi-photo{width:125px;height:160px;transform:translateY(18px) rotate(1deg)}@media(max-width:800px){.life-food .life-copy{order:1}.food-photo-story{order:2;padding:0 0 70px 40px}}.life-seen{align-items:center}.seen-photo-story{position:relative;padding:0 72px 92px 0}.life-seen .seen-main-photo{height:auto;aspect-ratio:1/1;transform:rotate(-.45deg)}.seen-main-photo img{object-position:center}.seen-supporting-photos{position:absolute;right:0;bottom:0;display:flex;gap:14px;align-items:flex-end}.life-seen .seen-small-photo{background:#fff;padding:7px;box-shadow:0 8px 28px rgba(0,0,0,.08)}.life-seen .seen-dock-photo{width:145px;height:145px;transform:rotate(1.35deg)}.life-seen .seen-building-photo{width:125px;height:160px;transform:translateY(18px) rotate(-1deg)}@media(max-width:800px){.seen-photo-story{order:2;padding:0 40px 70px 0}.life-seen .life-copy{order:1}}
/* Amazon availability lockup — small-space treatment permitted by Amazon guidelines */
.amazon-badge-link{
  display:inline-flex;
  flex-direction:column;
  align-items:flex-start;
  width:max-content;
  margin-top:18px;
  color:#131A22;
  text-decoration:none;
  line-height:1;
  transition:opacity .2s ease;
}
.amazon-badge-link:hover{opacity:.65}
.amazon-badge-available{
  font-family:Arial,Helvetica,sans-serif;
  font-size:9px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin:0 0 2px 2px;
}
.amazon-badge-amazon{
  font-family:Arial,Helvetica,sans-serif;
  font-size:22px;
  font-weight:700;
  letter-spacing:-.055em;
}

/* Amazon smile beneath wordmark */
.amazon-badge-amazon{
  position:relative;
  display:inline-block;
  padding-bottom:8px;
}
.amazon-smile{
  position:absolute;
  left:7px;
  bottom:0;
  width:38px;
  height:8px;
  border-bottom:2px solid #FF9900;
  border-radius:0 0 70% 70%;
  transform:rotate(3deg);
}
.amazon-smile::after{
  content:"";
  position:absolute;
  right:-1px;
  bottom:-2px;
  width:0;
  height:0;
  border-left:4px solid #FF9900;
  border-top:2px solid transparent;
  border-bottom:2px solid transparent;
  transform:rotate(16deg);
}

/* User-provided Amazon logo */
.amazon-logo{
  display:block;
  width:76px;
  height:auto;
  margin-top:2px;
}

/* Lock Amazon logo size consistently across every book card */
.book-card .amazon-badge-link .amazon-logo,
.books-grid .amazon-badge-link .amazon-logo,
.amazon-badge-link img.amazon-logo{
  width:76px !important;
  max-width:76px !important;
  height:auto !important;
  object-fit:contain !important;
  flex:none !important;
}

/* Match The Old Notebook Amazon lockup spacing across all three cards */
.book-card .amazon-badge-link,
.books-grid .amazon-badge-link,
.amazon-badge-link{
  gap:0 !important;
  row-gap:0 !important;
}
.book-card .amazon-badge-available,
.books-grid .amazon-badge-available,
.amazon-badge-available{
  display:block !important;
  margin:0 0 2px 2px !important;
  padding:0 !important;
  line-height:1 !important;
}
.book-card .amazon-badge-link .amazon-logo,
.books-grid .amazon-badge-link .amazon-logo,
.amazon-badge-link img.amazon-logo{
  display:block !important;
  margin:2px 0 0 0 !important;
  padding:0 !important;
}

/* Structural Amazon lockup fix: identical geometry in every book card */
.amazon-badge-link{
  display:inline-block !important;
  width:auto !important;
  margin-top:18px !important;
  line-height:1 !important;
}
.amazon-lockup{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  justify-content:flex-start !important;
  gap:0 !important;
  row-gap:0 !important;
  width:76px !important;
  line-height:1 !important;
}
.amazon-lockup .amazon-badge-available{
  display:block !important;
  margin:0 0 1px 2px !important;
  padding:0 !important;
  line-height:9px !important;
  height:9px !important;
}
.amazon-lockup .amazon-logo{
  display:block !important;
  width:76px !important;
  max-width:76px !important;
  height:auto !important;
  margin:0 !important;
  padding:0 !important;
  flex:none !important;
}

/* Final Amazon lockup fix — logo is a background, not a book-card image */
.amazon-lockup{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  justify-content:flex-start !important;
  gap:0 !important;
  width:76px !important;
}

.amazon-lockup .amazon-badge-available{
  display:block !important;
  margin:0 0 2px 2px !important;
  padding:0 !important;
  height:auto !important;
  line-height:1 !important;
}

.amazon-logo-mark{
  display:block !important;
  width:76px !important;
  height:24px !important;
  margin:0 !important;
  padding:0 !important;
  background-image:url("assets/amazon-logo.png") !important;
  background-repeat:no-repeat !important;
  background-position:left top !important;
  background-size:76px auto !important;
}

/* Final mobile polish — keep hero/profile portrait fully inside viewport */
@media (max-width: 800px) {
  .hero-photo {
    width: min(100%, 425px) !important;
    max-width: calc(100vw - 44px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .hero-photo img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* Center the closing Executive / Author / Human summary */
.closing-summary-centered {
  display: block;
  width: 100%;
  text-align: center;
}

/* Mobile hero repair — keep portrait visible while preserving randomized rotation */
@media (max-width: 800px) {
  .hero {
    overflow-x: hidden;
  }

  .hero-photo {
    width: calc(100vw - 56px) !important;
    max-width: 390px !important;
    margin: 0 auto !important;
    justify-self: center !important;
    padding: 18px !important;
    transform: rotate(-1.4deg) !important;
  }

  .hero-photo img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    object-fit: cover !important;
    object-position: center top !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: rotate(1.4deg) !important;
  }
}

/* Human closing — return to site-wide left alignment */
.human-signoff {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.closing-summary-centered {
  text-align: left !important;
}

/* Hero headline — give ascenders/descenders a little more breathing room */
.hero h1 {
  line-height: 1.08 !important;
}

/* Human closing — exact shared left edge */
.human-signoff,
.closing-summary-centered {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  text-align: left !important;
}

/* Human closing — move only "Anyway. That’s me." to match summary left edge */
.human-signoff {
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
  max-width: calc(var(--max) - 8vw) !important;
  padding-left: 0 !important;
  text-align: left !important;
}

/* Preserve the existing summary formatting exactly */
.closing-summary-centered {
  display: block;
}


/* Header wordmark refinement — logo matches name height */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wordmark img,
.wordmark .wordmark-logo {
  width: auto !important;
  height: 1em !important;
  max-height: 1em !important;
  object-fit: contain !important;
  flex: 0 0 auto;
}
