:root {
  color-scheme: light;
  --bg: #fbfbfd;
  --ink: #111113;
  --muted: #6e6e73;
  --line: #d8d8de;
  --panel: #ffffff;
  --accent: #050606;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 56px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(251, 251, 253);
  padding: 10px clamp(18px, 4vw, 48px);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 36px;
  height: 36px;
}

.brand span {
  color: #102c2d;
  font-family: "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(24px, 1.35vw, 42px);
  font-weight:  750;
  letter-spacing: 0;
  line-height: 1;
}

.topbar-products {
  grid-column: 2;
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 2px;
}

nav {
  justify-self: end;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
}

main {
  display: grid;
}

.hero {
  display: grid;
  place-items: center;
  background-image:
    linear-gradient(to bottom, rgba(251, 251, 253, 0.7) 0%, rgba(251, 251, 253, 0.86) 58%, rgba(251, 251, 253, 0.92) 100%),
    url("./public/main_banner.webp");
  background-position: center, center top;
  background-repeat: no-repeat;
  background-size: 100% 100%, cover;
  padding: 52px clamp(20px, 5vw, 64px) 44px;
  text-align: center;
}

.hero-logo {
  display: block;
  width: clamp(58px, 8vw, 80px);
  height: auto;
  margin: 0 0 18px;
}

.hero-link {
  display: grid;
  justify-items: center;
  color: inherit;
  text-decoration: none;
}

.hero-link[aria-disabled="true"] {
  cursor: default;
}

.hero-link:not([aria-disabled="true"]) {
  cursor: pointer;
}

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

h1 {
  width: 100%;
  font-size: clamp(48px, 8vw, 62px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.98;
}

.keep-together {
  display: block;
}

.lede {
  max-width: 550px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(19px, 2.5vw, 26px);
  line-height: 1.28;
}

.product-showcase {
  --preview-ratio: calc(1884 / 3116);
  display: grid;
  justify-items: center;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-top: 38px;
}

.product-showcase.show-market-preview {
  --preview-ratio: calc(977 / 1610);
}

.product-showcase.show-news-preview {
  --preview-ratio: calc(974 / 1615);
}

.product-showcase.show-story-preview {
  --preview-ratio: calc(976 / 1612);
}

.product-showcase.show-cooking-preview {
  --preview-ratio: calc(975 / 1614);
}

.product-showcase.show-fixit-preview {
  --preview-ratio: calc(975 / 1613);
}

.product-showcase.show-games-preview {
  --preview-ratio: calc(975 / 1614);
}

.product-showcase.show-healthcare-preview {
  --preview-ratio: calc(977 / 1610);
}

.product-showcase.show-nature-preview {
  --preview-ratio: calc(975 / 1613);
}

.product-showcase.show-map-preview {
  --preview-ratio: calc(975 / 1613);
}

.product-showcase.show-discuss-preview {
  --preview-ratio: calc(975 / 1613);
}

.product-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.product-links-pending {
  gap: 4px;
}

.availability-label {
  color: #ec1717;
  font-family: "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.product-links-pending .availability-label,
.availability-label-pending {
  color: #2f5f9f;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 5px 8px;
  text-align: left;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-link-pending {
  min-height: 26px;
  padding: 3px 6px;
  opacity: 0.56;
}

.product-link-home {
  --app-color: #ffc403;
}

.product-link-market {
  --app-color: #993c31;
}

.product-link-news {
  --app-color: #2f5f9f;
}

.product-link-story {
  --app-color: #6d3aa3;
}

.product-link-cooking {
  --app-color: #e64635;
}

.product-link-homebook {
  --app-color: #b88600;
}

.product-link-fixit {
  --app-color: #00746b;
}

.product-link-games {
  --app-color: #b8811f;
}

.product-link-healthcare {
  --app-color: #2f9d9b;
}

.product-link-nature {
  --app-color: #4f7d3f;
}

.product-link-map {
  --app-color: #2b6f86;
}

.product-link-discuss {
  --app-color: #c45a3f;
}

.product-link:hover,
.product-link:focus-visible {
  border-color: rgba(16, 44, 45, 0.14);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(16, 44, 45, 0.08);
  transform: translateY(-1px);
}

.product-link-pending:hover,
.product-link-pending:focus-visible {
  border-color: rgba(110, 110, 115, 0.14);
  box-shadow: 0 6px 18px rgba(16, 44, 45, 0.05);
  opacity: 0.78;
}

.product-link:hover .product-label,
.product-link:focus-visible .product-label {
  color: var(--app-color, #102c2d);
}

.product-label {
  color: #102c2d;
  font-family: "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(14px, 0.82vw, 11px);
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transition: color 140ms ease;
}

.product-link-pending .product-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.product-link-pending:hover .product-label,
.product-link-pending:focus-visible .product-label {
  color: var(--muted);
}

.product-preview {
  position: relative;
  display: block;
  width: 100%;
  height: min(calc(100vw * var(--preview-ratio)), calc(1120px * var(--preview-ratio)), 820px);
  margin-top: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  text-decoration: none;
  transform: translateZ(0);
  transition: border-color 160ms ease, box-shadow 160ms ease, height 180ms ease, transform 160ms ease;
}

.product-preview::before {
  content: none;
}

.product-preview:hover,
.product-showcase:not(.show-default-preview) .product-preview {
  box-shadow: none;
  transform: translateZ(0);
}

.base-carousel {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: stretch;
  background: transparent;
  opacity: 1;
  transition: opacity 180ms ease;
}

.carousel-track {
  --carousel-y-pad: clamp(18px, 3vw, 38px);
  position: relative;
  display: flex;
  gap: clamp(24px, 3vw, 42px);
  align-items: stretch;
  height: 100%;
  overflow-x: auto;
  padding-block: var(--carousel-y-pad);
  padding-inline: max(0px, calc((100vw - 1120px) / 2));
  scroll-padding-inline: max(0px, calc((100vw - 1120px) / 2));
  scroll-snap-type: none;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-control {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 2;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 44, 45, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(16, 44, 45, 0.14);
  color: var(--ink);
  cursor: pointer;
  font: 700 34px/1 Avenir Next, Avenir, Montserrat, system-ui, sans-serif;
  transform: translateY(-50%);
  transition: background 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  background: #fff;
  box-shadow: 0 16px 36px rgba(16, 44, 45, 0.18);
  transform: translateY(-50%) scale(1.04);
}

.carousel-control-prev {
  left: clamp(12px, 1.5vw, 22px);
}

.carousel-control-next {
  right: clamp(12px, 1.5vw, 22px);
}

.carousel-card {
  flex: 0 0 auto;
  width: auto;
  height: 100%;
  aspect-ratio: var(--card-ratio, 996 / 1888);
  max-height: none;
  margin: 0;
  border: 4px solid #e3e3e3;
  border-radius: 28px;
  background: #fcfcfc;
  box-shadow: 0 18px 48px rgba(16, 44, 45, 0.12);
  cursor: zoom-in;
  overflow: hidden;
  padding: 12px;
  scroll-snap-align: center;
}

.carousel-card img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: transparent;
  object-fit: cover;
  object-position: top center;
}

.carousel-card-wide {
  width: auto;
  height: 100%;
  aspect-ratio: 2816 / 1890;
  max-height: none;
  border-radius: 24px;
}

.carousel-card-wide img {
  height: 100%;
}

.preview-link {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: min(1120px, 100vw);
  height: 100%;
  pointer-events: none;
  transform: translateX(-50%);
}

.preview-image {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(16, 44, 45, 0.14);
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 24px 70px rgba(16, 44, 45, 0.14);
  object-fit: contain;
  transition: opacity 180ms ease;
}

.preview-image {
  opacity: 0;
}

.product-showcase:not(.show-default-preview):not(.show-cooking-preview):not(.show-home-preview) .base-carousel {
  opacity: 0;
  pointer-events: none;
}

.product-showcase.show-cooking-preview .carousel-card[data-carousel-app="property"] {
  display: none;
}

.product-showcase.show-home-preview .carousel-card[data-carousel-app="cooking"] {
  display: none;
}

.product-showcase.show-market-preview .preview-market,
.product-showcase.show-news-preview .preview-news,
.product-showcase.show-story-preview .preview-story,
.product-showcase.show-fixit-preview .preview-fixit,
.product-showcase.show-games-preview .preview-games,
.product-showcase.show-healthcare-preview .preview-healthcare,
.product-showcase.show-nature-preview .preview-nature,
.product-showcase.show-map-preview .preview-map,
.product-showcase.show-discuss-preview .preview-discuss {
  opacity: 1;
}

.product-showcase.show-market-preview .preview-link-market,
.product-showcase.show-news-preview .preview-link-news,
.product-showcase.show-story-preview .preview-link-story,
.product-showcase.show-fixit-preview .preview-link-fixit,
.product-showcase.show-games-preview .preview-link-games,
.product-showcase.show-healthcare-preview .preview-link-healthcare,
.product-showcase.show-nature-preview .preview-link-nature,
.product-showcase.show-map-preview .preview-link-map,
.product-showcase.show-discuss-preview .preview-link-discuss {
  pointer-events: auto;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(7, 9, 10, 0.82);
  padding: clamp(14px, 3vw, 34px);
  backdrop-filter: blur(12px);
}

.image-modal[hidden] {
  display: none;
}

.app-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(7, 9, 10, 0.76);
  padding: clamp(16px, 4vw, 52px);
  backdrop-filter: blur(12px);
}

.app-modal[hidden] {
  display: none;
}

.app-modal-card {
  display: grid;
  gap: 16px;
  width: min(1120px, 100%);
  color: var(--ink);
  text-align: left;
}

.app-modal-lockup {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  color: #fff;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.36);
}

.app-modal-logo {
  display: block;
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.app-modal-lockup-text {
  display: grid;
  gap: 2px;
}

.app-modal-brand {
  font-family: "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 0.95;
}

.app-modal-app-name {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.app-modal-image {
  display: block;
  width: 100%;
  max-height: calc(100svh - 150px);
  border: 1px solid rgba(16, 44, 45, 0.14);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.38);
  object-fit: contain;
}

.app-modal-card h2 {
  color: #fff;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.36);
}

.donate-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  overflow: auto;
  background: rgba(0, 0, 0, 0.58);
  padding: 17px;
  backdrop-filter: blur(8px);
}

.donate-modal[hidden] {
  display: none;
}

.donate-modal-inner {
  position: relative;
  display: grid;
  gap: 20px;
  width: min(530px, calc(100vw - 34px));
  max-height: calc(100dvh - 34px);
  overflow: auto;
  border: 1px solid rgba(213, 222, 211, 0.96);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 42px 120px rgba(8, 18, 14, 0.62);
  padding: clamp(22px, 4vw, 34px);
}

.donate-modal-inner header {
  display: grid;
  gap: 8px;
  padding-right: 48px;
}

.donate-modal-inner h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.02;
}

.donate-modal-inner header p {
  margin: 0;
  color: var(--muted);
}

.donate-close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
}

.donate-amount-control {
  display: grid;
  gap: 12px;
}

.donate-amount-control > label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.donate-amount-control label strong {
  color: var(--ink);
  font-size: 20px;
}

.donate-amount-control input[type="range"] {
  width: 100%;
  accent-color: #f59e0b;
}

.donate-checkout-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
}

.donate-amount-field {
  display: inline-grid;
  grid-template-columns: 38px 118px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.donate-amount-field span {
  display: grid;
  place-items: center;
  align-self: stretch;
  background: #f5f5f7;
  color: var(--muted);
  font-weight: 800;
}

.donate-amount-field input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 10px 11px;
  font: inherit;
  font-weight: 750;
}

.donate-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.donate-stripe-button,
.donate-callout-button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: #f59e0b;
  color: #fff;
  cursor: pointer;
  padding: 12px 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.donate-stripe-button {
  border-radius: 8px;
}

.donate-stripe-button:hover,
.donate-stripe-button:focus-visible,
.donate-callout-button:hover,
.donate-callout-button:focus-visible {
  background: #d98607;
  outline: 3px solid rgba(245, 158, 11, 0.2);
}

.donate-later-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  padding: 11px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.donate-modal button:disabled,
.donate-modal input:disabled {
  cursor: progress;
  opacity: 0.65;
}

.donate-modal-status {
  min-height: 18px;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.donate-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 16px 0 0;
  font-size: 12px;
}

.donate-modal-footer a {
  color: inherit;
  text-underline-offset: 0.18em;
}

.image-modal-media {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - clamp(28px, 6vw, 68px));
  max-height: calc(100svh - clamp(28px, 6vw, 68px));
  border: 4px solid #e3e3e3;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
  object-fit: contain;
}

.section {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  scroll-margin-top: 78px;
  border-top: 1px solid var(--line);
  padding: 70px 0;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.section-eyebrow,
.legal-updated {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-intro {
  margin: 0 0 32px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.company-grid article,
.cooking-callout,
.homebook-callout {
  border: 1px solid rgba(16, 44, 45, 0.08);
  border-radius: 18px;
  background: var(--panel);
  padding: 24px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.company-grid h3,
.cooking-callout h3,
.homebook-callout h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.company-grid p,
.cooking-callout p,
.homebook-callout p {
  margin: 0;
}

.cooking-callout,
.homebook-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  border-color: rgba(230, 70, 53, 0.16);
  background: linear-gradient(135deg, #fff 0%, #fff8f5 100%);
}

.cooking-callout > div {
  max-width: 680px;
}

.homebook-callout {
  border-color: rgba(184, 134, 0, 0.18);
  background: linear-gradient(135deg, #fff 0%, #fffbeb 100%);
}

.homebook-callout > div {
  max-width: 680px;
}

.cooking-callout-title,
.homebook-callout-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.cooking-callout-title img,
.homebook-callout-title img {
  display: block;
  width: 42px;
  height: 42px;
}

.cooking-callout-title h3,
.homebook-callout-title h3 {
  margin: 0;
}

.donate-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  border-left: 4px solid #f5940b;
  background: #f5e3e3;
  padding: 20px 22px;
}

.donate-callout > div {
  max-width: 680px;
}

.donate-callout h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.donate-callout p {
  margin: 0;
}

.donate-callout .section-eyebrow {
  margin-bottom: 8px;
  color: #9a5b00;
}

.donate-callout .donate-callout-button {
  border: 0;
  background: #f59e0b;
  color: #fff;
}

.donate-callout .donate-callout-button:hover,
.donate-callout .donate-callout-button:focus-visible {
  background: #d98607;
  color: #fff;
}

.primary-action {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #e74536;
  color: #fff;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: #c9382a;
}

.homebook-callout .primary-action {
  background: #ffc400;
  color: #111113;
}

.homebook-callout .primary-action:hover,
.homebook-callout .primary-action:focus-visible {
  background: #e6b000;
  color: #111113;
}

.contact-grid h3,
.legal-grid h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 21px;
}

.quiet p,
.contact-grid p,
.legal-grid p {
  color: var(--muted);
}

.quiet a {
  text-underline-offset: 0.18em;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.linkedin-icon {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 3px;
  background: #0a66c2;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.legal-grid p + p {
  margin-top: 12px;
}

.legal-grid .policy-card-link {
  margin-top: 18px;
}

.legal-updated {
  margin-bottom: 20px;
}

.legal-note {
  text-align: end;
  margin: 22px 0 0;
  font-size: 13px;
}

.quiet {
  color: var(--ink);
}

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

.contact-grid article,
.legal-grid article {
  border-radius: 18px;
  background: var(--panel);
  padding: 24px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.contact-form {
  margin-top: 18px;
  border-radius: 18px;
  background: var(--panel);
  padding: 24px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #245f62;
  outline: 3px solid rgba(36, 95, 98, 0.12);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-message-field {
  grid-column: 1 / -1;
}

.contact-message-field small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.contact-form-actions .primary-action {
  order: 2;
  margin-left: auto;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.contact-form-actions .primary-action:disabled {
  cursor: wait;
  opacity: 0.58;
}

.contact-form-status {
  order: 1;
  margin: 0;
  font-size: 13px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 26px 0 42px;
  font-size: 13px;
}

footer a {
  text-underline-offset: 0.18em;
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 4px;
  }

  .topbar-products {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }

  nav {
    justify-content: flex-end;
  }

  .hero {
    background-position: center, center top;
    background-size: 100% 100%, auto 100%;
    padding-top: 32px;
    padding-bottom: 36px;
  }

  h1 {
    font-size: clamp(36px, 10vw, 72px);
  }

  .keep-together {
    font-size: clamp(20px, 6.4vw, 50px);
  }

  .product-preview {
    width: 100%;
    margin-top: 0;
    box-shadow: none;
  }

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

  .contact-grid,
  .legal-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-fields {
    grid-template-columns: 1fr;
  }

  .cooking-callout,
  .homebook-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .donate-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .donate-checkout-row {
    grid-template-columns: 1fr;
  }

  .donate-amount-field {
    grid-template-columns: 38px 1fr;
    width: 100%;
  }

  .donate-modal-actions {
    flex-wrap: wrap;
  }

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