@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/dm-sans-latin.woff2") format("woff2");
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/manrope-latin.woff2") format("woff2");
}
:root {
  --ink: #153943;
  --muted: #4c6970;
  --paper: #f6f9f8;
  --sea: #e5f0f1;
  --line: #d6e2e2;
  --accent: #b64639;
  font-family: "DM Sans", Arial, sans-serif;
  font-optical-sizing: auto;
  color: var(--ink);
  background: var(--paper);
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: #b9dce2;
  color: #123640;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid #1a596a;
  outline-offset: 5px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 24px;
  padding: 12px;
  background: var(--paper);
  z-index: 20;
}
.skip:focus {
  top: 12px;
}
.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 60px;
}
.site-header {
  height: 88px;
  max-width: 1280px;
  margin: auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  display: block;
  width: 150px;
  flex-shrink: 0;
}
.wordmark img {
  display: block;
  width: 100%;
  height: auto;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
}
.site-header nav a {
  text-decoration: none;
  padding: 10px 0;
}
.site-header nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}
.site-header nav .sign-in {
  background: var(--sea);
  padding: 10px 19px;
  border-radius: 8px;
}
.site-header nav a:hover {
  color: #277084;
}
h1,
h2,
p,
figure {
  margin: 0;
}
h1 {
  font-size: 64px;
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h2 {
  font-size: 30px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
p {
  margin-bottom: 21px;
}
.about-opening {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 88px;
  align-items: center;
  padding: 60px 0 90px;
}
.about-copy {
  max-width: 540px;
}
.about-copy h1 {
  margin-bottom: 35px;
}
.about-copy .lead {
  font-size: 26px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.014em;
  margin-bottom: 25px;
}
.about-copy > p:not(.lead) {
  max-width: 49ch;
  color: var(--muted);
}
.about-art {
  margin: 0;
}
.about-art img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}
.primary-link {
  display: inline-flex;
  align-items: center;
  gap: 27px;
  background: #153e4a;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 8px;
  margin-top: 13px;
  transition: background 0.18s;
}
.primary-link:hover {
  background: #245d6d;
}
.primary-link svg {
  height: 20px;
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.room-note {
  background: var(--sea);
  padding: 42px 44px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}
.room-note h2 {
  max-width: 260px;
}
.room-note p {
  font-size: 18px;
  line-height: 1.65;
  max-width: 62ch;
  margin: 0;
}
.faq-section {
  padding: 90px 0 65px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 90px;
}
.faq-section > h2 {
  position: sticky;
  top: 32px;
  align-self: start;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.faq-list summary {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding: 21px 35px 21px 0;
  line-height: 1.4;
}
.faq-list summary:after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 1.5px solid;
  border-bottom: 1.5px solid;
  transform: rotate(45deg);
  position: absolute;
  right: 6px;
  top: 25px;
  transition: transform 0.18s;
}
.faq-list details[open] summary:after {
  transform: rotate(225deg);
  top: 29px;
}
.faq-list details p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  padding: 0 25px 22px 0;
  margin: 0;
  max-width: 66ch;
}
.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 0 58px;
  gap: 24px;
}
.contact-row p {
  font-size: 21px;
  margin: 0;
}
.contact-row a {
  font-size: 17px;
}
.site-footer {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 27px;
  padding-bottom: 32px;
  gap: 24px;
  font-size: 14px;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.site-footer a {
  text-decoration: none;
  padding: 12px 0;
}
.site-footer a:hover {
  text-decoration: underline;
}
.site-footer a[aria-current="page"] {
  text-decoration: underline;
}
.back-home {
  color: var(--muted);
}
.page-examples .intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  padding: 65px 0 42px;
}
.lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 350px;
  margin: 0;
}
.examples-art {
  margin: 0 0 40px;
}
.examples-art img {
  width: 100%;
  height: 330px;
  display: block;
  object-fit: cover;
  object-position: 50% 65%;
  border-radius: 16px;
}
.example-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 66px;
}
.example-row {
  padding: 29px 0 31px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.example-row[hidden] {
  display: none;
}
.example-copy {
  flex: 1;
}
.request-text {
  font-size: 25px;
  line-height: 1.37;
  font-weight: 400;
  letter-spacing: -0.018em;
  margin: 0 0 17px;
  text-wrap: pretty;
}
.example-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 49ch;
  margin: 0 0 14px;
}
.copy-request {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid var(--sea);
  border-radius: 8px;
  background: none;
  font-size: 14px;
  text-decoration: none;
  text-underline-offset: 4px;
}
.copy-request svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.copy-request:hover {
  color: #24758b;
  text-decoration: underline;
}
.copy-status:empty {
  display: none;
}
.copy-status {
  position: fixed;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  background: #153e4a;
  color: #fff;
  padding: 13px 18px;
  font-size: 14px;
  border-radius: 8px;
  max-width: calc(100vw - 40px);
  width: max-content;
  box-shadow: 0 8px 24px #15394320;
  z-index: 10;
  margin: 0;
}
.page-examples .contact-row {
  margin-top: 32px;
  padding-top: 25px;
}
.page-about .contact-row {
  border: 1px solid var(--line);
  border-radius: 12px;
  justify-content: flex-start;
  gap: 16px;
  padding: 22px 26px;
  margin-bottom: 40px;
}
.page-about .contact-row p {
  font-size: 18px;
  font-weight: 500;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.legal-intro {
  padding: 58px 0 35px 264px;
}
.legal-intro h1 {
  font-size: 52px;
  letter-spacing: -0.03em;
}
.legal-intro .lede {
  font-size: 18px;
  max-width: none;
  margin-top: 19px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 740px);
  gap: 64px;
  padding: 10px 0 55px;
}
.legal-layout aside {
  position: sticky;
  top: 32px;
  align-self: start;
  font-size: 14px;
}
.contents > summary {
  display: none;
}
.contents nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contents nav a {
  text-decoration: none;
  line-height: 1.45;
  padding: 1px 0;
}
.contents nav a:hover {
  text-decoration: underline;
}
.legal-copy {
  max-width: 69ch;
  font-size: 18px;
  line-height: 1.75;
}
.legal-copy section {
  margin: 42px 0 0;
  scroll-margin-top: 30px;
}
.legal-copy section h2 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 19px;
}
.legal-copy p,
.legal-copy li {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
}
.legal-copy p {
  margin-bottom: 19px;
}
.legal-copy ul {
  padding-left: 23px;
  margin: 0 0 24px;
}
.legal-copy li {
  margin-bottom: 12px;
}
.legal-copy strong {
  font-weight: 600;
}
.table-scroll {
  overflow-x: auto;
  margin: 24px 0 28px;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
  line-height: 1.55;
  text-align: left;
}
th,
td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  background: var(--sea);
  font-weight: 500;
}
td:first-child {
  width: 33%;
  font-weight: 500;
}
td:last-child {
  color: var(--muted);
}
@media (max-width: 1050px) {
  .container,
  .site-header {
    padding-left: 35px;
    padding-right: 35px;
  }
  .about-opening {
    gap: 46px;
  }
  .about-copy .lead {
    font-size: 24px;
  }
  .room-note {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 40px;
    padding: 35px;
  }
  .faq-section {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 45px;
  }
  .example-list {
    gap: 0 40px;
  }
  .legal-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 40px;
  }
  .legal-intro {
    padding-left: 220px;
  }
  .page-examples .intro {
    gap: 35px;
  }
  h1 {
    font-size: 57px;
  }
}
@media (max-width: 760px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .site-header {
    height: auto;
    min-height: 76px;
    padding: 14px 24px;
  }
  .wordmark {
    width: 130px;
  }
  .site-header nav a:not(.sign-in) {
    display: none;
  }
  .site-header nav .sign-in {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    min-height: 44px;
  }
  .about-opening {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 38px 0 48px;
    gap: 30px;
  }
  .about-copy {
    max-width: 620px;
  }
  h1 {
    font-size: 49px;
  }
  .about-copy h1 {
    margin-bottom: 25px;
  }
  .about-copy .lead {
    font-size: 25px;
    line-height: 1.4;
  }
  .about-copy p {
    font-size: 17px;
    line-height: 1.65;
  }
  .about-art img {
    aspect-ratio: 4/3;
    object-position: 50% 78%;
    border-radius: 12px;
  }
  .primary-link {
    margin-top: 5px;
  }
  .room-note {
    display: block;
    padding: 27px 25px;
  }
  .room-note h2 {
    max-width: none;
    font-size: 25px;
    margin-bottom: 17px;
  }
  .room-note p {
    font-size: 17px;
  }
  .faq-section {
    display: block;
    padding: 45px 0 35px;
  }
  .faq-section > h2 {
    position: static;
    font-size: 28px;
    margin-bottom: 24px;
  }
  .faq-list summary {
    font-size: 17px;
    padding: 19px 33px 19px 0;
  }
  .faq-list details p {
    font-size: 16px;
  }
  .contact-row {
    padding: 28px 0 38px;
    gap: 15px;
    flex-wrap: wrap;
  }
  .contact-row p {
    font-size: 20px;
  }
  .contact-row a {
    font-size: 16px;
  }
  .site-footer {
    display: block;
    padding-top: 21px;
    padding-bottom: 27px;
  }
  .site-footer nav {
    margin-top: 12px;
    gap: 17px;
    font-size: 13px;
  }
  .page-examples .intro {
    display: block;
    padding: 35px 0 29px;
  }
  .page-examples .intro h1 {
    font-size: 47px;
  }
  .page-examples .intro .lede {
    font-size: 18px;
    max-width: 28ch;
    margin-top: 21px;
  }
  .examples-art {
    margin-bottom: 22px;
  }
  .examples-art img {
    height: 235px;
    object-position: 67% 65%;
    border-radius: 12px;
  }
  .example-list {
    display: block;
  }
  .example-row {
    padding: 25px 0;
  }
  .request-text {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -0.015em;
  }
  .example-description {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .copy-request {
    font-size: 14px;
  }
  .copy-status {
    font-size: 13px;
    width: calc(100vw - 40px);
  }
  .legal-intro {
    padding: 35px 0 25px;
  }
  .legal-intro h1 {
    font-size: 43px;
  }
  .legal-intro .lede {
    font-size: 18px;
    max-width: 29ch;
    margin-top: 17px;
  }
  .legal-layout {
    display: block;
    padding: 0 0 30px;
  }
  .legal-layout aside {
    position: static;
    margin: 0 0 23px;
  }
  .contents {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .contents > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 15px;
    min-height: 49px;
  }
  .contents > summary:after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid;
    border-bottom: 1.5px solid;
    transform: rotate(45deg);
    margin-right: 6px;
  }
  .contents[open] > summary:after {
    transform: rotate(225deg);
  }
  .contents nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 22px;
    padding: 10px 0 23px;
  }
  .contents nav a {
    font-size: 14px;
  }
  .legal-copy {
    font-size: 17px;
  }
  .legal-copy p,
  .legal-copy li {
    font-size: 17px;
    line-height: 1.75;
  }
  .legal-copy section {
    margin-top: 34px;
  }
  .legal-copy section h2 {
    font-size: 25px;
    margin-bottom: 16px;
  }
  .table-scroll {
    margin: 22px 0;
  }
  table {
    font-size: 15px;
  }
  th,
  td {
    padding: 13px 9px;
  }
  .legal-copy ul {
    padding-left: 21px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.examples-art img {
  height: 200px;
}
.page-examples .intro {
  padding-top: 42px;
  padding-bottom: 30px;
}
.examples-art {
  margin-bottom: 23px;
}
.primary-link {
  background: #fff0a3;
  color: #123540;
  border-radius: 100px;
  padding: 15px 23px;
}
.primary-link:hover {
  background: #ffeca0;
}
.page-examples .contact-row > a {
  background: #fff0a3;
  color: #123540;
  border-radius: 100px;
  padding: 13px 22px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.room-note {
  background: none;
  border-top: 1px solid var(--line);
  padding: 36px 0;
}
@media (max-width: 760px) {
  .examples-art img {
    height: 145px;
  }
  .page-examples .intro {
    padding-top: 27px;
    padding-bottom: 24px;
  }
  .examples-art {
    margin-bottom: 13px;
  }
  .room-note {
    padding: 29px 0;
  }
}
@media print {
  .site-header,
  .site-footer,
  .legal-layout aside,
  .skip {
    display: none;
  }
  .container {
    padding: 0;
    max-width: none;
  }
  .legal-intro {
    padding: 0 0 22px;
  }
  .legal-intro h1 {
    font-size: 32px;
  }
  .legal-layout {
    display: block;
    padding: 0;
  }
  .legal-copy {
    max-width: none;
  }
  .legal-copy p,
  .legal-copy li {
    font-size: 11pt;
    line-height: 1.5;
  }
  .legal-copy section h2 {
    font-size: 17pt;
    break-after: avoid;
  }
  .legal-copy section {
    margin-top: 25px;
  }
  body {
    background: #fff;
    color: #000;
  }
  a {
    text-decoration: none;
  }
}
