:root {
  color-scheme: light;
  --ink: #241f19;
  --ink-soft: #3d352b;
  --muted: #75695b;
  --paper: #f8f2e8;
  --cotton: #fffaf1;
  --oat: #e8dccb;
  --linen: #d7c5ad;
  --clay: #9d5538;
  --clay-dark: #6e3323;
  --sage: #6f765f;
  --charcoal: #191714;
  --line: rgb(36 31 25 / 16%);
  --shadow: 0 26px 70px rgb(36 31 25 / 18%);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper), #f4eadb 58%, var(--cotton));
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  z-index: 40;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  padding: 10px 14px;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(18px, 4vw, 56px);
  color: var(--cotton);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgb(20 16 12 / 72%), rgb(20 16 12 / 0));
  content: "";
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgb(255 250 241 / 42%);
  border-radius: 50%;
  background: rgb(255 250 241 / 14%);
  color: var(--cotton);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  backdrop-filter: blur(14px);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: rgb(255 250 241 / 74%);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(255 250 241 / 18%);
  border-radius: 999px;
  background: rgb(25 23 20 / 24%);
  padding: 5px;
  backdrop-filter: blur(16px);
}

.site-nav a {
  border-radius: 999px;
  color: rgb(255 250 241 / 86%);
  padding: 9px 13px;
  font-size: 0.86rem;
  font-weight: 850;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgb(255 250 241 / 18%);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 120px clamp(20px, 5vw, 74px) 86px;
  color: var(--cotton);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(18 14 10 / 76%) 0%, rgb(18 14 10 / 42%) 42%, rgb(18 14 10 / 8%) 78%),
    linear-gradient(0deg, rgb(18 14 10 / 54%) 0%, rgb(18 14 10 / 0%) 44%);
}

.hero__content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1b56f;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(4.6rem, 13vw, 10.8rem);
  line-height: 0.83;
  text-wrap: balance;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgb(255 250 241 / 88%);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 950;
}

.button--primary {
  background: var(--cotton);
  color: var(--charcoal);
}

.button--secondary {
  border-color: rgb(255 250 241 / 44%);
  color: var(--cotton);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.intro,
.coming-soon {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding: 76px 0;
}

.intro__copy h2,
.coming-soon__copy h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.94;
  text-wrap: balance;
}

.intro__copy p:not(.eyebrow),
.coming-soon__copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mood-grid article {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 250 241 / 72%);
  padding: 24px;
  box-shadow: 0 1px 0 rgb(255 255 255 / 80%);
}

.mood-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 34px;
  color: var(--clay);
}

.mood-grid h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.1;
}

.mood-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.coming-soon {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: 26px 0 90px;
}

.coming-soon__image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.coming-soon__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: right center;
}

.coming-soon__copy {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(24px, 5vw, 52px) 0;
}

.coming-soon__copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.coming-soon__copy li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  color: var(--ink-soft);
  font-weight: 850;
}

.coming-soon__copy svg {
  width: 18px;
  height: 18px;
  color: var(--sage);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 26px clamp(20px, 5vw, 74px);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding-top: 118px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgb(18 14 10 / 78%) 0%, rgb(18 14 10 / 46%) 64%, rgb(18 14 10 / 12%) 100%),
      linear-gradient(0deg, rgb(18 14 10 / 58%) 0%, rgb(18 14 10 / 0%) 45%);
  }

  .intro,
  .coming-soon {
    grid-template-columns: 1fr;
  }

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

  .mood-grid article {
    min-height: auto;
  }

  .mood-grid svg {
    margin-bottom: 22px;
  }
}

@media (max-width: 520px) {
  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  h1 {
    font-size: clamp(3.7rem, 19vw, 5rem);
  }

  .hero {
    min-height: 88vh;
    padding-bottom: 56px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .intro,
  .coming-soon {
    width: min(100% - 28px, 1180px);
    padding-block: 56px;
  }

  .site-footer {
    flex-direction: column;
  }
}
