:root {
  --color-bg: #f3f2f2;
  --color-surface: #eae9e9;
  --color-text: #201e1d;
  --color-accent: #0088b0;
  --color-accent-2: #d6006c;
  --color-accent-600: #1186ac;
  --color-accent-700: #006786;
  --color-divider: color-mix(in srgb, #201e1d 16%, transparent);
  --font-heading: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-heading-weight: 600;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f3f2f2;
  color: #201e1d;
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

p {
  margin: 0 0 15px;
}

a {
  color: #0088b0;
  text-decoration: none;
  text-underline-offset: 3px;
}
a:not(.btn):hover {
  color: #006786;
  text-decoration: underline;
}

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

figure {
  margin: 0;
}

figcaption {
  font-size: 11px;
  margin-top: 5px;
  color: color-mix(in srgb, #201e1d 55%, transparent);
}

blockquote {
  margin: 0;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid #0088b0;
  outline-offset: 2px;
}

::selection {
  background: color-mix(in srgb, #0088b0 30%, transparent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #201e1d;
  background: transparent;
  border: 1px solid transparent;
  padding: 10px calc(15px * 1.2);
  border-radius: 2px;
}
.btn svg {
  display: block;
}
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-primary {
  background: #0088b0;
  color: #f3f2f2;
}
.btn-primary:hover {
  background: #1186ac;
  color: #f8f4f4;
}
.btn-primary:active {
  background: #006786;
}

.btn-secondary {
  border-color: color-mix(in srgb, #201e1d 16%, transparent);
}
.btn-secondary:hover {
  background: color-mix(in srgb, #201e1d 7%, transparent);
}
.btn-secondary:active {
  background: color-mix(in srgb, #201e1d 14%, transparent);
}

.btn-ghost {
  color: #0088b0;
  padding-inline: 5px;
}
.btn-ghost:hover {
  background: color-mix(in srgb, #0088b0 10%, transparent);
}
.btn-ghost:active {
  background: color-mix(in srgb, #0088b0 18%, transparent);
}

.field > label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  color: color-mix(in srgb, #201e1d 70%, transparent);
}

.input {
  width: 100%;
  min-height: 36px;
  padding: 6px 10px;
  font: inherit;
  font-size: 14px;
  color: #201e1d;
  caret-color: #0088b0;
  background: #eae9e9;
  border: 1px solid color-mix(in srgb, #201e1d 16%, transparent);
  border-radius: 2px;
}
.input::placeholder {
  color: color-mix(in srgb, #201e1d 65%, transparent);
  opacity: 1;
}
.input:hover {
  border-color: color-mix(in srgb, #201e1d 45%, transparent);
}
.input:focus-visible {
  border-color: #0088b0;
  outline-offset: 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, #201e1d 60%, transparent);
  padding: 10px;
  border-bottom: 1px solid color-mix(in srgb, #201e1d 16%, transparent);
}
.table td {
  padding: 10px;
  border-bottom: 1px solid color-mix(in srgb, #201e1d 8%, transparent);
}
.table tbody tr:hover {
  background: color-mix(in srgb, #201e1d 4%, transparent);
}
.table .table__label {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 16px;
  vertical-align: top;
}
.table .table__text {
  font-size: 15px;
  line-height: 1.55;
}

.halftone {
  position: relative;
  filter: grayscale(0.35) contrast(1.15);
  overflow: hidden;
}
.halftone::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.22) 30%, transparent 32%);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #006786;
  margin: 0 0 12px;
}
.eyebrow--page {
  margin-bottom: 20px;
}

.page-title {
  font-size: clamp(34px, 5.6vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  text-wrap: pretty;
}

.page-lead {
  font-size: clamp(18px, 2.1vw, 21px);
  line-height: 1.55;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.section-title {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  text-wrap: pretty;
}

.section-text {
  font-size: 17px;
  line-height: 1.65;
  max-width: 60ch;
  margin: 0 0 36px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.note {
  font-size: 14px;
  opacity: 0.7;
  margin: 16px 0 0;
}

.prose h2 {
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  text-wrap: pretty;
}
.prose p:not([class]) {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 16px;
}
.prose p + h2 {
  margin-top: 28px;
}
.prose .actions {
  margin-top: 28px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 3.5vw, 44px);
}
.reviews__more {
  margin: 28px 0 0;
  font-size: 15px;
}

.review__quote {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.45;
  font-style: italic;
  text-wrap: pretty;
}
.review__rating {
  font-size: 13px;
  margin: 0 0 8px;
  color: #006786;
  letter-spacing: 0.02em;
}
.review__stars {
  color: #edbb00;
  letter-spacing: 0.08em;
  margin-right: 4px;
}
.review__toggle {
  display: inline-block;
  margin: -4px 0 10px;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 14px;
  color: #0088b0;
  cursor: pointer;
  text-underline-offset: 3px;
}
.review__toggle:hover {
  color: #006786;
  text-decoration: underline;
}
.review__author {
  font-size: 14px;
  margin: 0;
  opacity: 0.65;
}

.band {
  position: relative;
  isolation: isolate;
  margin-top: clamp(56px, 8vw, 96px);
  padding-block: clamp(48px, 7vw, 88px);
}
.band::before {
  content: "";
  position: absolute;
  inset: 0 -100vw;
  z-index: -1;
  background: #eae9e9;
  box-shadow: inset 0 1px 0 color-mix(in srgb, #201e1d 16%, transparent), inset 0 -1px 0 color-mix(in srgb, #201e1d 16%, transparent);
}
.band + .band {
  margin-top: 0;
}
.band--ink {
  color: #f3f2f2;
}
.band--ink::before {
  background: #201e1d;
  box-shadow: none;
}
.band--ink .eyebrow {
  color: #99e0ff;
}
.band--ink a:not(.btn) {
  color: #99e0ff;
}
.band--ink .btn-ghost {
  color: #99e0ff;
}
.band--ink .btn-ghost:hover {
  background: color-mix(in srgb, #f3f2f2 12%, transparent);
}
.band--ink .btn-secondary {
  color: #f3f2f2;
  border-color: color-mix(in srgb, #f3f2f2 35%, transparent);
}
.band--ink .btn-secondary:hover {
  background: color-mix(in srgb, #f3f2f2 12%, transparent);
}
.band--ink figcaption {
  color: color-mix(in srgb, #f3f2f2 60%, transparent);
}
.band--ink ::selection {
  background: color-mix(in srgb, #99e0ff 40%, transparent);
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

.site-main {
  flex: 1;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 5vw, 48px) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #f3f2f2;
  backdrop-filter: saturate(1.2);
}
.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px clamp(20px, 5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 28px;
}
.site-header__rule {
  height: 3px;
  background: #201e1d;
}
.site-header__hairline {
  height: 1px;
  background: #201e1d;
  margin-top: 3px;
}

.brand {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: #201e1d;
  margin-right: auto;
  text-decoration: none;
}
.brand:not(.btn):hover {
  color: #201e1d;
  text-decoration: none;
}
.brand__dot {
  color: #d6006c;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  align-items: baseline;
}
.site-nav__link {
  font-size: 15px;
  color: #201e1d;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.site-nav__link:not(.btn):hover {
  color: #0088b0;
  text-decoration: none;
}
.site-nav__link[aria-current=page] {
  border-bottom-color: #0088b0;
}
.site-nav__cta {
  font-size: 13px;
  padding: 5px 11px;
  border-color: color-mix(in srgb, #201e1d 16%, transparent);
  color: #201e1d;
  align-self: center;
}
.site-nav__cta:hover {
  border-color: #0088b0;
  color: #0088b0;
}

.buy-form,
.site-nav__form {
  display: contents;
}

.site-footer {
  margin-top: clamp(72px, 10vw, 128px);
}
.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
.site-footer__divider {
  height: 1px;
  background: color-mix(in srgb, #201e1d 16%, transparent);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding: clamp(36px, 5vw, 56px) 0;
}
.site-footer__brand {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.site-footer__about {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.75;
  max-width: 34ch;
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.site-footer__heading {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 4px;
}
.site-footer__link {
  font-size: 15px;
}
.site-footer__logout {
  display: contents;
}
.site-footer__button {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: #0088b0;
  cursor: pointer;
}
.site-footer__button:hover {
  color: #006786;
  text-decoration: underline;
}
.site-footer__copyright {
  font-size: 13px;
  opacity: 0.6;
  padding: 20px 0 40px;
  margin: 0;
}

/*# sourceMappingURL=app-7d1043473d.output.css.map */
