@font-face {
  font-family: Cormorant;
  src: url("/assets/cormorant.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("/assets/inter.ttf") format("truetype");
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: #f5f3ed;
  color: #203c35;
  font:
    15px/1.7 Inter,
    Arial,
    sans-serif;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #986c3d;
  outline-offset: 5px;
}
header {
  max-width: 1300px;
  margin: auto;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font:
    46px/1 Cormorant,
    Georgia,
    serif;
  text-decoration: none;
  letter-spacing: -1.5px;
}
.logo span {
  font: 26px Georgia;
  color: #986c3d;
  margin-left: 4px;
}
nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav a {
  text-decoration: none;
  font-size: 13px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #244b40;
  color: #fffef8;
  padding: 16px 24px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  min-height: 50px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #18382f;
  transform: translateY(-2px);
}
.button.small {
  padding: 12px 20px;
}
.button.secondary {
  background: transparent;
  color: #244b40;
  border: 1px solid #c9cec3;
}
.pill {
  display: inline-block;
  border-radius: 30px;
  background: #e8ede4;
  padding: 7px 13px;
  font-size: 11px;
}
.hero {
  max-width: 1300px;
  margin: 30px auto 0;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 65px;
  align-items: center;
}
.hero-copy {
  padding: 20px 0;
}
.hero h1 {
  font:
    76px/0.98 Cormorant,
    Georgia,
    serif;
  letter-spacing: -2px;
  margin: 30px 0;
}
.hero h1 em {
  color: #986c3d;
  font-weight: 400;
}
.hero p {
  color: #4f5e56;
  max-width: 415px;
  margin: 25px 0 30px;
  font-size: 15px;
}
.fine {
  font-size: 11px;
  color: #70796f;
  margin-top: 15px;
}
.hero-art {
  position: relative;
  min-height: 610px;
  border-radius: 160px 160px 18px 18px;
  overflow: hidden;
  background: #112d35;
}
.hero-art img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: 64%;
}
.art-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 35px 26px;
  color: #fffef8;
  background: linear-gradient(transparent, #112d35df);
}
.art-caption span,
.eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  color: #986c3d;
}
.art-caption span {
  color: #ddc08d;
}
.art-caption p {
  font:
    36px Cormorant,
    Georgia,
    serif;
  color: #fffef8;
  margin: 6px 0;
}
.intro {
  max-width: 1204px;
  padding: 92px 0 36px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 70px;
}
.intro p {
  max-width: 415px;
  color: #4f5e56;
  margin-top: 38px;
}
h2 {
  font:
    48px/1.08 Cormorant,
    Georgia,
    serif;
  letter-spacing: -0.8px;
  margin: 14px 0 20px;
}
h3 {
  font:
    35px/1.05 Cormorant,
    Georgia,
    serif;
  letter-spacing: -0.5px;
  margin: 20px 0;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1204px;
  margin: 0 auto;
}
.feature {
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.feature .symbol {
  font: 48px Georgia;
  color: #986c3d;
  margin-bottom: 30px;
}
.feature p {
  color: #4f5e56;
  line-height: 1.8;
  font-size: 13px;
  flex: 1;
}
.feature a {
  font-size: 12px;
  font-weight: 500;
  margin-top: 16px;
}
.sage {
  background: #e8ede4;
}
.cream {
  background: #fffefa;
  border: 1px solid #e9e8df;
}
.lilac {
  background: #ece7f3;
}
.note {
  max-width: 1100px;
  margin: 95px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.note p {
  font-size: 14px;
  color: #4f5e56;
  margin: 25px 0;
}
.orbit {
  border: 1px solid #dddcd2;
  border-radius: 50%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font: 170px Georgia;
  color: #986c3d;
  background: radial-gradient(circle, #e8ede4 0, transparent 65%);
}
.faq {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 0;
}
.faq h2 {
  margin-bottom: 32px;
}
details {
  border-bottom: 1px solid #dddcd2;
  padding: 21px 0;
}
summary {
  cursor: pointer;
  font-size: 14px;
  min-height: 28px;
}
details p {
  font-size: 13px;
  color: #4f5e56;
  margin: 15px 20px 0 0;
}
.closing {
  max-width: 1204px;
  margin: 70px auto 90px;
  text-align: center;
  padding: 65px 25px;
  background: #e8ede4;
  border-radius: 24px;
}
.closing h2 {
  font-size: 60px;
  margin: 20px 0 30px;
}
footer {
  border-top: 1px solid #dddcd2;
  max-width: 1204px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 30px 0 45px;
  font-size: 11px;
  color: #70796f;
}
footer .logo {
  font-size: 34px;
  color: #203c35;
}
footer div {
  display: flex;
  gap: 20px;
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  background: #fff;
  padding: 12px;
  z-index: 3;
}
.skip:focus {
  top: 10px;
}
body.legal main {
  max-width: 800px;
  padding: 35px 24px 70px;
  margin: auto;
}
body.legal h1 {
  font:
    48px Cormorant,
    Georgia,
    serif;
}
body.legal h2 {
  font-size: 29px;
  margin-top: 34px;
}
body.legal p {
  font-size: 14px;
  color: #4f5e56;
}
@media (max-width: 1300px) {
  .intro,
  .features,
  .closing,
  footer {
    margin-left: 48px;
    margin-right: 48px;
  }
  .note {
    margin: 80px 65px;
  }
  .hero {
    gap: 36px;
  }
  .hero h1 {
    font-size: 65px;
  }
  .hero-art {
    min-height: 560px;
  }
}
@media (max-width: 760px) {
  header {
    padding: 20px 22px;
  }
  .logo {
    font-size: 38px;
  }
  nav {
    gap: 12px;
  }
  nav > a:not(.button) {
    display: none;
  }
  .hero {
    padding: 0 22px;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 10px;
  }
  .hero h1 {
    font-size: 61px;
    line-height: 1.05;
    margin: 25px 0;
  }
  .hero-copy {
    padding: 12px 0;
  }
  .hero p {
    font-size: 14px;
    margin: 22px 0;
  }
  .hero-art {
    min-height: 420px;
    border-radius: 120px 120px 18px 18px;
  }
  .art-caption p {
    font-size: 34px;
    margin: 8px 0;
  }
  .intro {
    padding: 55px 0 20px;
    display: block;
    margin: 0 22px;
  }
  .intro p {
    margin-top: 20px;
  }
  h2 {
    font-size: 40px;
  }
  .features {
    grid-template-columns: 1fr;
    margin: 0 22px;
    gap: 16px;
  }
  .feature {
    padding: 27px;
  }
  .feature h3 {
    font-size: 33px;
  }
  .feature .symbol {
    margin-bottom: 20px;
  }
  .note {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 60px 30px;
  }
  .orbit {
    max-width: 260px;
    width: 100%;
    margin: auto;
    font-size: 120px;
  }
  .faq {
    padding: 15px 22px;
  }
  .closing {
    margin: 50px 22px;
    padding: 45px 20px;
  }
  .closing h2 {
    font-size: 47px;
  }
  footer {
    margin: 0 22px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }
  footer p {
    width: 100%;
    order: 4;
    margin: 0;
  }
  .fine {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}

.logo img {
  display: block;
  width: 148px;
  height: auto;
}
@media (max-width: 760px) {
  .logo img {
    width: 118px;
  }
}

.account-section {
  max-width: 1204px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  padding: 45px 0;
  border-top: 1px solid #dddcd2;
  border-bottom: 1px solid #dddcd2;
}
.account-section p {
  max-width: 480px;
  color: #4f5e56;
  font-size: 14px;
}
.steps {
  padding: 0;
  margin: 0;
  list-style: none;
}
.steps li {
  display: flex;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid #dddcd2;
}
.steps li:last-child {
  border: 0;
}
.steps li > span {
  color: #986c3d;
  font-size: 12px;
  padding-top: 5px;
}
.steps h3 {
  margin: 0;
  font-size: 30px;
}
.steps p {
  margin: 10px 0 0;
}
nav .login-link {
  white-space: nowrap;
}
footer div {
  flex-wrap: wrap;
}
@media (max-width: 1300px) {
  .account-section {
    margin: 70px 48px;
    gap: 40px;
  }
}
@media (max-width: 760px) {
  .account-section {
    margin: 50px 22px;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 35px 0;
  }
  nav > a.login-link {
    display: inline;
    font-size: 11px;
  }
  header {
    gap: 15px;
  }
  .button.small {
    padding: 10px 12px;
  }
  nav {
    gap: 10px;
  }
  header .logo img {
    width: 95px;
  }
}
