@font-face {
  font-family: "Lato";
  src: url("../fonts/lato-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/lato-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

:root {
  --teal: #244a50;
  --teal-deep: #17383d;
  --teal-ink: #102d31;
  --ivory: #f5ebd5;
  --ivory-soft: #fbf5e9;
  --paper: #e8dcc6;
  --paper-deep: #d8c7a9;
  --ink: #17373b;
  --muted: #597074;
  --hairline-dark: rgba(23, 55, 59, 0.2);
  --hairline-light: rgba(245, 235, 213, 0.26);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Lato", "Helvetica Neue", Arial, sans-serif;
  --shell: min(1220px, calc(100vw - 96px));
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--teal);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body,
a,
button {
  -webkit-tap-highlight-color: transparent;
}

img,
picture {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

p,
h1,
h2,
blockquote {
  margin-block: 0;
}

::selection {
  background: var(--paper-deep);
  color: var(--teal-ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  background: var(--ivory);
  color: var(--teal-ink);
  padding: 10px 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 5px;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(245, 235, 213, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--dark {
  color: rgba(23, 55, 59, 0.74);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 13px 26px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 260ms ease,
    color 260ms ease,
    transform 260ms var(--ease),
    box-shadow 260ms ease;
}

.button--light {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--teal-ink);
  box-shadow: 0 16px 35px rgba(3, 23, 26, 0.2);
}

.button--light:hover {
  background: transparent;
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(3, 23, 26, 0.3);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 320ms var(--ease);
}

.text-link {
  position: relative;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link span {
  transition: transform 260ms var(--ease);
}

.text-link:hover span {
  transform: translateY(4px);
}

.text-link--light {
  color: rgba(245, 235, 213, 0.84);
}

.text-link--dark {
  color: var(--teal);
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(245, 235, 213, 0.13);
  background: rgba(23, 56, 61, 0.9);
  box-shadow: 0 10px 45px rgba(3, 24, 27, 0.16);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

body.menu-open .site-header {
  border-color: rgba(245, 235, 213, 0.13);
  background: var(--teal-deep);
}

.no-js .site-header {
  border-color: rgba(245, 235, 213, 0.13);
  background: rgba(23, 56, 61, 0.94);
}

.site-header__inner {
  display: grid;
  width: var(--shell);
  height: 100%;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: clamp(24px, 4vw, 64px);
}

.wordmark {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  color: var(--ivory);
  line-height: 1;
  text-decoration: none;
}

.wordmark__title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.wordmark__author {
  margin-top: 6px;
  color: rgba(245, 235, 213, 0.6);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
}

.primary-nav a {
  position: relative;
  color: rgba(245, 235, 213, 0.76);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--ivory);
  content: "";
  transform: scaleX(0);
  transition: transform 240ms var(--ease);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--ivory);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 235, 213, 0.7);
  padding: 9px 16px;
  color: var(--ivory);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 200ms ease,
    color 200ms ease;
}

.header-cta:hover {
  background: var(--ivory);
  color: var(--teal-ink);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 235, 213, 0.38);
  padding: 0;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
}

.no-js .menu-toggle {
  display: none;
}

.menu-toggle span {
  position: absolute;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform 260ms var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  padding: clamp(46px, 9vh, 82px) max(24px, calc((100vw - var(--shell)) / 2)) 36px;
  border-top: 1px solid rgba(245, 235, 213, 0.13);
  background:
    linear-gradient(132deg, transparent 0 68%, rgba(245, 235, 213, 0.035) 68% 68.15%, transparent 68.15%),
    var(--teal-deep);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition:
    opacity 260ms ease,
    transform 360ms var(--ease),
    visibility 0s linear 360ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.mobile-menu::after {
  position: absolute;
  z-index: -1;
  right: -56px;
  bottom: 3%;
  width: 260px;
  height: 180px;
  border-top: 1px solid rgba(245, 235, 213, 0.11);
  border-left: 1px solid rgba(245, 235, 213, 0.11);
  content: "";
  transform: rotate(-11deg);
}

.mobile-nav {
  display: grid;
  width: 100%;
  max-width: 610px;
}

.mobile-nav a {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(245, 235, 213, 0.17);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 8vw, 2.7rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-decoration: none;
}

.mobile-nav a:first-child {
  border-top: 1px solid rgba(245, 235, 213, 0.17);
}

.mobile-nav__purchase {
  margin-top: 26px;
  border: 1px solid rgba(245, 235, 213, 0.7) !important;
  padding-inline: 18px;
  font-family: var(--sans) !important;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
}

.mobile-menu__note {
  max-width: 300px;
  margin-top: 42px;
  color: rgba(245, 235, 213, 0.48);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: linear-gradient(118deg, var(--teal-deep) 0%, var(--teal) 52%, #2a545a 100%);
  isolation: isolate;
}

.hero__texture {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(117deg, transparent 0 66%, rgba(245, 235, 213, 0.032) 66% 66.08%, transparent 66.08%),
    linear-gradient(117deg, transparent 0 79%, rgba(245, 235, 213, 0.02) 79% 79.08%, transparent 79.08%);
}

.hero__inner {
  display: grid;
  width: var(--shell);
  min-height: 100svh;
  align-items: center;
  margin-inline: auto;
  padding-block: calc(var(--header-height) + 36px) 52px;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.82fr);
  gap: clamp(36px, 7vw, 112px);
}

.hero__copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
}

.hero h1 {
  margin-top: 22px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(4.9rem, 8.4vw, 8.3rem);
  font-weight: 500;
  letter-spacing: -0.057em;
  line-height: 0.76;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 span {
  margin-bottom: 0.16em;
  color: rgba(245, 235, 213, 0.63);
  font-family: var(--sans);
  font-size: 0.12em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1 em {
  margin-top: 0.21em;
  margin-left: clamp(30px, 5vw, 80px);
  font-size: 0.64em;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.hero__subtitle {
  max-width: 560px;
  margin-top: 33px;
  color: rgba(245, 235, 213, 0.78);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  letter-spacing: 0.012em;
  line-height: 1.52;
}

.hero__subtitle span {
  white-space: nowrap;
}

.hero__promise {
  max-width: 510px;
  margin-top: 27px;
  color: rgba(245, 235, 213, 0.63);
  font-size: 0.92rem;
  line-height: 1.75;
}

.hero__promise strong {
  display: block;
  color: var(--ivory);
  font-weight: 400;
}

.hero__actions {
  display: flex;
  align-items: center;
  margin-top: 34px;
  gap: 30px;
}

.hero__art {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: min(600px, calc(100svh - 190px));
  align-items: center;
  justify-content: center;
}

.hero__art::before,
.hero__art::after {
  position: absolute;
  z-index: 1;
  width: min(19vw, 245px);
  height: min(21vw, 265px);
  content: "";
  pointer-events: none;
}

.hero__art::before {
  top: 7%;
  right: 0;
  border-top: 1px solid rgba(245, 235, 213, 0.17);
  border-right: 1px solid rgba(245, 235, 213, 0.17);
  transform: rotate(3deg);
}

.hero__art::after {
  bottom: 6%;
  left: 2%;
  border-bottom: 1px solid rgba(245, 235, 213, 0.1);
  border-left: 1px solid rgba(245, 235, 213, 0.1);
  transform: rotate(-4deg);
}

.hero__book {
  position: relative;
  z-index: 3;
  width: min(31vw, 410px, calc((100svh - 220px) * 0.73));
  filter: drop-shadow(28px 36px 28px rgba(4, 26, 29, 0.3));
  transform: rotate(1.5deg);
}

.hero__mask {
  position: absolute;
  z-index: -1;
  right: -9vw;
  bottom: -23vw;
  width: min(55vw, 820px);
  opacity: 0.13;
  transform: rotate(-13deg);
}

.hero__fragments {
  position: absolute;
  z-index: 2;
  width: min(28vw, 420px);
  opacity: 0.3;
  pointer-events: none;
}

.hero__fragments--one {
  top: 4%;
  right: -4%;
  transform: rotate(-17deg);
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 29px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(245, 235, 213, 0.5);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(245, 235, 213, 0.22);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  width: 100%;
  height: 65%;
  background: var(--ivory);
  content: "";
  animation: cue 2.8s ease-in-out infinite;
}

/* Book */

.book-section {
  position: relative;
  overflow: hidden;
  background: var(--ivory-soft);
  color: var(--ink);
}

.book-section::after {
  position: absolute;
  right: -12vw;
  bottom: -25vw;
  width: 45vw;
  height: 58vw;
  border-top: 1px solid rgba(23, 55, 59, 0.08);
  border-left: 1px solid rgba(23, 55, 59, 0.08);
  content: "";
  transform: rotate(-11deg);
}

.book-section__grid {
  min-height: 880px;
  padding-block: clamp(110px, 12vw, 178px);
}

.book-section__content {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin-left: auto;
}

.book-section h2,
.recipe-section h2,
.about-section h2,
.purchase-section h2,
.contact-section h2,
.error-page h1 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.book-section h2 {
  max-width: 890px;
  margin-top: 27px;
  font-size: clamp(3.2rem, 5.3vw, 6.15rem);
}

.book-section h2 em,
.recipe-section h2 em,
.about-section h2 em,
.purchase-section h2 em,
.error-page h1 em {
  font-weight: 500;
}

.book-section__prose {
  display: grid;
  max-width: 870px;
  margin-top: 63px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 56px;
}

.book-section__prose p {
  color: #35555a;
  font-size: 0.98rem;
  line-height: 1.86;
}

.book-section__prose p:last-child {
  grid-column: 2;
}

.book-section__prose p:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.58;
  grid-row: span 2;
}

.book-section__prose cite {
  font-family: var(--serif);
}

.book-section__quote {
  max-width: 850px;
  margin-top: 70px;
  padding: 28px 0 0 clamp(30px, 6vw, 90px);
  border-top: 1px solid var(--hairline-dark);
}

.book-section__quote p {
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.55vw, 2.55rem);
  font-style: italic;
  line-height: 1.35;
}

/* Winning recipe */

.recipe-section {
  position: relative;
  overflow: hidden;
  background: var(--teal-deep);
  isolation: isolate;
}

.recipe-section__ambient {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.035), transparent 38%),
    linear-gradient(74deg, transparent 0 23%, rgba(245, 235, 213, 0.025) 23% 23.08%, transparent 23.08%);
}

.recipe-section__grid {
  display: grid;
  align-items: center;
  padding-block: clamp(110px, 13vw, 190px);
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1fr);
  gap: clamp(70px, 10vw, 150px);
}

.recipe-section__visual {
  position: relative;
  min-height: 640px;
}

.recipe-section__visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(36vw, 470px);
  height: min(39vw, 510px);
  border-top: 1px solid rgba(245, 235, 213, 0.17);
  border-right: 1px solid rgba(245, 235, 213, 0.17);
  border-bottom: 1px solid rgba(245, 235, 213, 0.08);
  content: "";
  transform: translate(-50%, -50%) rotate(5deg);
}

.recipe-section__visual img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 49%;
  width: min(43vw, 570px);
  filter: drop-shadow(26px 32px 24px rgba(1, 19, 22, 0.25));
  transform: translate(-50%, -49%) rotate(-8deg);
}

.recipe-section__visual p {
  position: absolute;
  z-index: 3;
  bottom: -18px;
  left: 0;
  color: rgba(245, 235, 213, 0.58);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
}

.recipe-section h2 {
  max-width: 690px;
  margin-top: 28px;
  font-size: clamp(3.5rem, 5.8vw, 6.3rem);
}

.recipe-section h2 em {
  color: rgba(245, 235, 213, 0.68);
  font-size: 0.76em;
}

.recipe-section__intro {
  max-width: 670px;
  margin-top: 50px;
}

.recipe-section__intro p {
  color: rgba(245, 235, 213, 0.69);
  line-height: 1.9;
}

.recipe-section__intro p + p {
  margin-top: 23px;
}

.takeaways {
  padding: 0;
  margin: 55px 0 0;
  border-top: 1px solid var(--hairline-light);
  list-style: none;
}

.takeaways li {
  display: grid;
  align-items: start;
  padding: 19px 0;
  border-bottom: 1px solid var(--hairline-light);
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.takeaways span {
  width: 18px;
  height: 1px;
  margin-top: 0.82em;
  background: rgba(245, 235, 213, 0.5);
  transform: rotate(-42deg);
}

.takeaways p {
  color: rgba(245, 235, 213, 0.87);
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.55;
}

/* Praise */

.praise-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  isolation: isolate;
}

.praise-section__surface {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 235, 213, 0.78), rgba(245, 235, 213, 0.78)),
    image-set(
      url("../images/porcelain-surface.avif") type("image/avif"),
      url("../images/porcelain-surface.webp") type("image/webp")
    );
  background-position: center;
  background-size: cover;
  filter: saturate(0.62) contrast(0.92);
}

.praise-section::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 7vw;
  width: 1px;
  height: 100%;
  background: rgba(23, 55, 59, 0.1);
  content: "";
}

.praise-section__inner {
  padding-block: clamp(100px, 12vw, 170px);
}

.praise-section__heading {
  display: grid;
  align-items: end;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(40px, 8vw, 140px);
}

.praise-section h2 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.4vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.awards {
  display: grid;
  margin-top: clamp(70px, 8vw, 110px);
  border-top: 1px solid rgba(23, 55, 59, 0.34);
  border-bottom: 1px solid rgba(23, 55, 59, 0.34);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.award {
  position: relative;
  min-height: 240px;
  padding: 28px 25px 26px;
  border-left: 1px solid rgba(23, 55, 59, 0.22);
}

.award:first-child {
  border-left: 0;
}

.award--current::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--teal);
  content: "";
}

.award__year {
  color: rgba(23, 55, 59, 0.52);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.award__name {
  margin-top: 34px;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.38rem);
  line-height: 1.35;
}

.award__honor {
  margin-top: 13px;
  color: #526b6e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.55;
  text-transform: uppercase;
}

.award-note {
  margin-top: 12px;
  color: rgba(23, 55, 59, 0.58);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.press-quotes {
  display: grid;
  margin-top: clamp(70px, 9vw, 130px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(50px, 9vw, 150px);
}

.press-quotes blockquote {
  position: relative;
  padding-top: 29px;
  border-top: 1px solid rgba(23, 55, 59, 0.38);
}

.press-quotes blockquote::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(23, 55, 59, 0.4);
  background: var(--paper);
  content: "";
  transform: rotate(45deg);
}

.press-quotes p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.35vw, 2.3rem);
  font-style: italic;
  line-height: 1.45;
}

.press-quotes cite {
  display: block;
  margin-top: 25px;
  color: rgba(23, 55, 59, 0.62);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* About */

.about-section {
  overflow: hidden;
  background: var(--ivory-soft);
  color: var(--ink);
}

.about-section__grid {
  display: grid;
  align-items: center;
  padding-block: clamp(100px, 12vw, 170px);
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1fr);
  gap: clamp(70px, 11vw, 170px);
}

.about-section__portrait {
  position: relative;
}

.about-section__portrait::before {
  position: absolute;
  top: -28px;
  right: -31px;
  width: 42%;
  height: 46%;
  border-top: 1px solid rgba(23, 55, 59, 0.22);
  border-right: 1px solid rgba(23, 55, 59, 0.22);
  content: "";
}

.portrait-frame {
  position: relative;
  padding: 17px;
  background: var(--paper);
  box-shadow: 25px 35px 65px rgba(20, 47, 51, 0.15);
  clip-path: polygon(0.8% 0.5%, 99.2% 0%, 100% 98.9%, 65% 100%, 31% 99.1%, 0% 100%);
  transform: rotate(-1.7deg);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 1.067;
  filter: saturate(0.72) contrast(1.02);
  object-fit: cover;
  object-position: 51% center;
}

.portrait-frame span {
  display: block;
  padding: 13px 4px 3px;
  color: #455e62;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  text-align: right;
}

.about-section h2 {
  margin-top: 27px;
  font-size: clamp(3.5rem, 5.6vw, 6.2rem);
}

.about-section h2 em {
  color: #516f72;
  font-size: 0.75em;
}

.about-section__prose {
  max-width: 620px;
  margin-top: 50px;
}

.about-section__prose p {
  color: #3d5c60;
  line-height: 1.88;
}

.about-section__prose p:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.7;
}

.about-section__prose p + p {
  margin-top: 21px;
}

.about-section .text-link {
  margin-top: 42px;
}

/* Purchase */

.purchase-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(245, 235, 213, 0.035), transparent 33%),
    var(--teal-deep);
}

.purchase-section::before {
  position: absolute;
  top: -22%;
  right: -14%;
  width: 48vw;
  height: 72%;
  border-bottom: 1px solid rgba(245, 235, 213, 0.08);
  border-left: 1px solid rgba(245, 235, 213, 0.08);
  content: "";
  transform: rotate(-9deg);
}

.purchase-section__fragments {
  position: absolute;
  right: -4%;
  bottom: -7%;
  width: min(38vw, 560px);
  opacity: 0.11;
  transform: rotate(15deg);
}

.purchase-section__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(105px, 12vw, 170px);
}

.purchase-section__copy {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 130px);
}

.purchase-section__copy .eyebrow {
  grid-column: 1 / -1;
}

.purchase-section h2 {
  font-size: clamp(3.5rem, 6vw, 6.7rem);
}

.purchase-section h2 em {
  color: rgba(245, 235, 213, 0.65);
  font-size: 0.73em;
}

.purchase-section__copy > p:last-child {
  max-width: 430px;
  padding-bottom: 9px;
  color: rgba(245, 235, 213, 0.66);
}

.retailers {
  display: grid;
  margin-top: 80px;
  border-top: 1px solid var(--hairline-light);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.retailer {
  display: flex;
  min-height: 162px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 27px 23px;
  border-right: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.3;
  text-decoration: none;
  transition:
    background-color 260ms ease,
    color 260ms ease,
    transform 260ms var(--ease);
}

.retailer:first-child {
  border-left: 1px solid var(--hairline-light);
}

.retailer small {
  display: block;
  margin-bottom: 35px;
  color: rgba(245, 235, 213, 0.46);
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.retailer i {
  color: rgba(245, 235, 213, 0.5);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-style: normal;
  transition: transform 260ms var(--ease);
}

.retailer:hover,
.retailer:focus-visible,
.retailer--primary {
  background: var(--ivory);
  color: var(--teal-ink);
}

.retailer:hover {
  transform: translateY(-5px);
}

.retailer:hover small,
.retailer:focus-visible small,
.retailer--primary small,
.retailer:hover i,
.retailer:focus-visible i,
.retailer--primary i {
  color: rgba(23, 55, 59, 0.8);
}

.retailer:hover i {
  transform: translate(3px, -3px);
}

.purchase-section__closing {
  display: grid;
  max-width: 780px;
  margin: 90px auto 0;
  text-align: center;
}

.purchase-section__closing p {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 3rem);
  font-style: italic;
  line-height: 1.45;
}

.purchase-section__closing cite {
  margin-top: 18px;
  color: rgba(245, 235, 213, 0.5);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Contact and footer */

.contact-section {
  background: var(--ivory);
  color: var(--ink);
}

.contact-section__inner {
  display: grid;
  align-items: end;
  padding-block: clamp(70px, 8vw, 115px);
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 10vw, 160px);
}

.contact-section h2 {
  margin-top: 20px;
  font-size: clamp(2.6rem, 4vw, 4.8rem);
}

.contact-section__action {
  padding-top: 20px;
  border-top: 1px solid var(--hairline-dark);
}

.contact-section__action a {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2.3rem);
  text-decoration-color: rgba(23, 55, 59, 0.3);
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
  transition: text-decoration-color 200ms ease;
}

.contact-section__action a:hover {
  text-decoration-color: var(--teal);
}

.contact-section__action p {
  margin-top: 18px;
  color: #4c676a;
  font-size: 0.82rem;
}

.site-footer {
  border-top: 1px solid rgba(245, 235, 213, 0.13);
  background: var(--teal-ink);
}

.site-footer__inner {
  display: grid;
  width: var(--shell);
  min-height: 92px;
  align-items: center;
  margin-inline: auto;
  color: rgba(245, 235, 213, 0.64);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  grid-template-columns: repeat(3, 1fr);
}

.site-footer a {
  text-align: center;
  text-decoration: none;
}

.site-footer p:last-child {
  text-align: right;
}

/* 404 */

.error-page {
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(128deg, transparent 0 67%, rgba(245, 235, 213, 0.035) 67% 67.1%, transparent 67.1%),
    var(--teal-deep);
}

.error-document {
  overflow: hidden;
}

.error-page__main {
  position: relative;
  display: grid;
  width: min(1080px, calc(100vw - 64px));
  min-height: 100svh;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.error-page__main > img {
  width: 100%;
  opacity: 0.82;
  transform: rotate(-10deg);
}

.error-page__copy {
  position: relative;
  z-index: 2;
}

.error-page__number {
  position: absolute;
  z-index: -1;
  top: -125px;
  left: -60px;
  color: rgba(245, 235, 213, 0.055);
  font-family: var(--serif);
  font-size: 15rem;
  line-height: 1;
}

.error-page h1 {
  margin-top: 25px;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
}

.error-page h1 em {
  color: rgba(245, 235, 213, 0.64);
  font-size: 0.7em;
}

.error-page__copy > p:not(.eyebrow, .error-page__number) {
  max-width: 470px;
  margin-top: 34px;
  color: rgba(245, 235, 213, 0.65);
}

.error-page .button {
  margin-top: 34px;
}

/* Motion */

.motion-ready [data-hero] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms var(--ease),
    transform 650ms var(--ease);
}

.motion-ready.page-ready [data-hero] {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready.page-ready [data-hero]:nth-child(2) {
  transition-delay: 80ms;
}

.motion-ready.page-ready [data-hero]:nth-child(3) {
  transition-delay: 150ms;
}

.motion-ready.page-ready [data-hero]:nth-child(4) {
  transition-delay: 220ms;
}

.motion-ready.page-ready [data-hero]:nth-child(5) {
  transition-delay: 290ms;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms var(--ease),
    transform 620ms var(--ease);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .hero__fragments--one {
  animation: fragments-drift 16s ease-in-out infinite alternate;
}

@keyframes fragments-drift {
  from {
    transform: rotate(-17deg) translate3d(0, 0, 0);
  }
  to {
    transform: rotate(-14deg) translate3d(-14px, 11px, 0);
  }
}

@keyframes cue {
  0% {
    top: -70%;
  }
  55%,
  100% {
    top: 115%;
  }
}

/* Responsive */

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 64px, 1000px);
  }

  .site-header__inner {
    gap: 28px;
  }

  .primary-nav {
    gap: 22px;
  }

  .primary-nav a {
    font-size: 0.61rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(4.7rem, 9vw, 6.9rem);
  }

  .hero__art {
    min-height: 560px;
  }

  .hero__book {
    width: min(37vw, 380px);
  }

  .book-section__grid {
    gap: 60px;
  }

  .recipe-section__grid,
  .about-section__grid {
    gap: 70px;
  }

  .recipe-section__visual {
    min-height: 540px;
  }

  .retailer {
    padding-inline: 17px;
    font-size: 1.05rem;
  }
}

@media (max-width: 840px) {
  :root {
    --shell: calc(100% - 48px);
    --header-height: 74px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
  }

  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero__inner {
    min-height: auto;
    padding-block: calc(var(--header-height) + 70px) 100px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__copy {
    max-width: 670px;
  }

  .hero h1 {
    font-size: clamp(5.4rem, 14vw, 7.3rem);
  }

  .hero__art {
    min-height: 480px;
  }

  .hero__book {
    width: min(47vw, 350px);
  }

  .scroll-cue {
    display: none;
  }

  .book-section__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .recipe-section__grid,
  .about-section__grid {
    grid-template-columns: 1fr;
  }

  .recipe-section__visual {
    width: min(78vw, 560px);
    min-height: 540px;
    margin-inline: auto;
  }

  .recipe-section__visual img {
    width: min(72vw, 530px);
  }

  .recipe-section__visual::before {
    width: min(70vw, 500px);
    height: min(74vw, 520px);
  }

  .about-section__portrait {
    width: min(64vw, 460px);
    margin-inline: auto;
  }

  .about-section__content {
    max-width: 660px;
  }

  .praise-section__heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .awards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .award:nth-child(3) {
    border-left: 0;
  }

  .award:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(23, 55, 59, 0.22);
  }

  .purchase-section__copy {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .retailers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .retailer:nth-child(3) {
    border-left: 1px solid var(--hairline-light);
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .error-page__main {
    grid-template-columns: 0.8fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 36px);
    --header-height: 70px;
  }

  body {
    font-size: 16px;
  }

  .wordmark__title {
    font-size: 0.93rem;
  }

  .wordmark__author {
    font-size: 0.48rem;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 0.57rem;
  }

  .mobile-menu {
    padding-top: 36px;
  }

  .mobile-nav a {
    min-height: 56px;
    font-size: clamp(1.55rem, 7.4vw, 2rem);
  }

  .hero__inner {
    padding-block: calc(var(--header-height) + 45px) 60px;
    gap: 22px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(4.15rem, 19.3vw, 5.35rem);
    line-height: 0.77;
  }

  .hero h1 em {
    margin-left: 18px;
  }

  .hero__subtitle {
    margin-top: 24px;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .hero__subtitle span {
    white-space: normal;
  }

  .hero__promise {
    margin-top: 20px;
    font-size: 0.83rem;
    line-height: 1.6;
  }

  .hero__actions {
    margin-top: 26px;
    gap: 20px;
  }

  .hero__actions .text-link {
    display: none;
  }

  .hero__art {
    min-height: 295px;
    justify-content: flex-end;
    padding-right: 10%;
  }

  .hero__book {
    width: min(58vw, 240px);
  }

  .hero__mask {
    right: -36vw;
    bottom: -15vw;
    width: 105vw;
  }

  .hero__fragments {
    width: 60vw;
    opacity: 0.2;
  }

  .book-section__grid,
  .recipe-section__grid,
  .about-section__grid,
  .praise-section__inner,
  .purchase-section__inner {
    padding-block: 88px;
  }

  .book-section h2,
  .recipe-section h2,
  .about-section h2,
  .purchase-section h2,
  .praise-section h2 {
    font-size: clamp(3.1rem, 14vw, 4.3rem);
  }

  .book-section__prose {
    margin-top: 43px;
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .book-section__prose p:first-child,
  .book-section__prose p:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .book-section__quote {
    margin-top: 50px;
    padding-left: 0;
  }

  .recipe-section__grid {
    gap: 65px;
  }

  .recipe-section__visual {
    width: 100%;
    min-height: 380px;
  }

  .recipe-section__visual img {
    width: min(104vw, 430px);
  }

  .recipe-section__visual::before {
    width: min(95vw, 390px);
    height: min(98vw, 410px);
  }

  .recipe-section__visual p {
    bottom: -20px;
    font-size: 0.83rem;
  }

  .recipe-section__intro {
    margin-top: 38px;
  }

  .takeaways {
    margin-top: 43px;
  }

  .takeaways li {
    grid-template-columns: 30px 1fr;
  }

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

  .award {
    min-height: 0;
    padding: 24px 0;
    border-bottom: 1px solid rgba(23, 55, 59, 0.22);
    border-left: 0;
  }

  .award:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(23, 55, 59, 0.22);
  }

  .award__name {
    margin-top: 17px;
  }

  .press-quotes {
    margin-top: 75px;
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .about-section__grid {
    gap: 68px;
  }

  .about-section__portrait {
    width: min(86vw, 410px);
  }

  .about-section__portrait::before {
    top: -20px;
    right: -14px;
  }

  .about-section__prose {
    margin-top: 38px;
  }

  .retailers {
    margin-top: 54px;
    grid-template-columns: 1fr;
  }

  .retailer,
  .retailer:nth-child(3) {
    min-height: 122px;
    padding: 20px 18px;
    border-left: 1px solid var(--hairline-light);
  }

  .retailer small {
    margin-bottom: 22px;
  }

  .purchase-section__closing {
    margin-top: 67px;
  }

  .contact-section__inner {
    padding-block: 68px;
  }

  .contact-section__action a {
    font-size: 1.18rem;
    overflow-wrap: anywhere;
  }

  .site-footer__inner {
    min-height: 140px;
    padding-block: 26px;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .site-footer a {
    text-align: right;
  }

  .site-footer p:last-child {
    text-align: left;
    grid-column: 1 / -1;
  }

  .error-page__main {
    width: var(--shell);
    padding-block: 60px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .error-page__main > img {
    position: absolute;
    z-index: 0;
    right: -40%;
    bottom: -8%;
    width: 105%;
    opacity: 0.11;
  }

  .error-page__number {
    top: -70px;
    left: -20px;
    font-size: 10rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
